blob: 70ad852d0a825f3cb9120106f1054ec256708c36 [file] [log] [blame]
cgeoffroy2f22ebc2016-03-07 19:05:47 +01001FROM cgeoffroy/dockernet
2
peustermcd4a3122016-04-16 05:32:45 +02003# ensure that we have the latest dockernet code base!
4WORKDIR /dockernet
5RUN git pull \
6 && python setup.py install
7
cgeoffroy2f22ebc2016-03-07 19:05:47 +01008WORKDIR /son-emu
9
10COPY . /son-emu/
11
12RUN cd /son-emu/ansible \
13 && ansible-playbook install.yml \
14 && cd /son-emu \
15 && python setup.py install \
16 && echo 'Done'
17
18ENTRYPOINT ["/son-emu/utils/docker/entrypoint.sh"]