aboutsummaryrefslogtreecommitdiffstats
path: root/sctp-test/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'sctp-test/Dockerfile')
-rw-r--r--sctp-test/Dockerfile8
1 files changed, 7 insertions, 1 deletions
diff --git a/sctp-test/Dockerfile b/sctp-test/Dockerfile
index 9719953..b39a459 100644
--- a/sctp-test/Dockerfile
+++ b/sctp-test/Dockerfile
@@ -4,6 +4,7 @@ MAINTAINER Harald Welte <laforge@gnumonks.org>
RUN apt-get update && \
apt-get install -y --no-install-recommends \
+ ca-certificates \
bison \
flex && \
apt-get clean
@@ -15,15 +16,20 @@ RUN git config --global user.email "nobody@localhost" && \
WORKDIR /tmp
+# Commit from 2018-08-28
RUN git clone https://github.com/nplab/packetdrill && \
cd packetdrill && \
+ git checkout 89bb4f35393187d0d34a84170de529d688421be7 && \
git am /tmp/*.patch && \
cd gtests/net/packetdrill && \
./configure && \
make && \
cp packetdrill /usr/bin/
-RUN git clone https://github.com/nplab/ETSI-SCTP-Conformance-Testsuite.git
+# Commit from 2018-06-03
+RUN git clone https://github.com/nplab/ETSI-SCTP-Conformance-Testsuite.git && \
+ cd "ETSI-SCTP-Conformance-Testsuite" && \
+ git checkout 24768461f9b9be36a2a5e4b767c7afb749e3243f
COPY run /tmp/run