blob: b2ad2665677386b60897626502919d8f7f076895 [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 \
peusterm73807762016-04-16 05:39:31 +02006 && python setup.py develop
peustermcd4a3122016-04-16 05:32:45 +02007
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"]