blob: 6696f64fbfc8f7b7f67a090d1c10fba45d9e0e43 [file] [log] [blame]
peustermf1652422016-06-21 08:48:17 +02001FROM ubuntu
2MAINTAINER iMinds
3
4RUN apt-get update && apt-get install -y \
5 mz \
6 iperf
7
8
9ADD start.sh start.sh
10RUN chmod +x start.sh
11
12# emulator specific entrypoint
13ENV SON_EMU_CMD ./start.sh
14
15# always use bash as defauld command
16CMD /bin/bash