Skip to content

Commit 84894b5

Browse files
committed
[hotfix][workaround] so latest head breaks this docker image, so this pins captagent at a version before fixing what's up with captagent head for QXIP#6
1 parent aadcc56 commit 84894b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ ENV captagent_version 6.1
66
RUN apt-get update -qq && apt-get install --no-install-recommends --no-install-suggests -yqq ca-certificates git make m4 automake autoconf libtool libcap-dev libexpat-dev libpcap-dev zlib1g-dev openssl libssl-dev bison flex libjson0 libjson0-dev libcurl4-gnutls-dev libjson-c-dev && rm -rf /var/lib/apt/lists/*
77

88
WORKDIR /usr/src
9-
RUN git clone https://github.com/sipcapture/captagent.git captagent
9+
ENV captagent_sha1 cf757a2e0bb883146e0178d15ee3659c03d9fd6c
10+
RUN git clone --branch $captagent_version https://github.com/sipcapture/captagent.git captagent && cd captagent && git reset --hard $captagent_sha1
1011

1112
WORKDIR /usr/src/captagent
1213
RUN ./build.sh

0 commit comments

Comments
 (0)