blob: 971ab198644b1fba128e94b0bf7c142c78e474a0 [file] [log] [blame]
peustermf1652422016-06-21 08:48:17 +02001FROM ubuntu
2MAINTAINER iMinds
3
4RUN apt-get update && apt-get install -y \
5 iptables \
6 arptables \
7 ebtables \
8 bridge-utils \
9 tcpdump \
10 openvswitch-switch \
11 openvswitch-common
12
13RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
14
15ADD start.sh start.sh
16RUN chmod +x start.sh
17
18# emulator specific entrypoint
19ENV SON_EMU_CMD ./start.sh
20
21# always use bash as defauld command
22CMD /bin/bash