cleanup for open sourcing
[osm/vim-emu.git] / misc / vnfs / firewall / Dockerfile
1 FROM      ubuntu
2 MAINTAINER iMinds
3
4 RUN 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         
13 RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
14
15 ADD start.sh start.sh
16 RUN chmod +x start.sh
17
18 # emulator specific entrypoint
19 ENV SON_EMU_CMD ./start.sh
20
21 # always use bash as defauld command
22 CMD /bin/bash