aboutsummaryrefslogtreecommitdiffstats
path: root/sctp-test/Dockerfile
blob: 56fcefc3fe8004132744f813cca57e6b2c6614b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM debian-jessie-build

MAINTAINER Harald Welte <laforge@gnumonks.org>

RUN	apt-get update && apt-get install -y \
	bison flex

COPY *.patch /tmp/

RUN	git config --global user.email "nobody@localhost" && \
	git config --global user.name "Docker Container"

WORKDIR	/tmp

RUN	git clone https://github.com/nplab/packetdrill && \
	cd packetdrill && \
	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

COPY	run /tmp/run

CMD	/tmp/run