blob: 971ab198644b1fba128e94b0bf7c142c78e474a0 [file] [log] [blame]
FROM ubuntu
MAINTAINER iMinds
RUN apt-get update && apt-get install -y \
iptables \
arptables \
ebtables \
bridge-utils \
tcpdump \
openvswitch-switch \
openvswitch-common
RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
ADD start.sh start.sh
RUN chmod +x start.sh
# emulator specific entrypoint
ENV SON_EMU_CMD ./start.sh
# always use bash as defauld command
CMD /bin/bash