dockerized it

This commit is contained in:
Joachim Lusiardi
2015-03-06 21:58:53 +01:00
parent a8b6789295
commit e64f94cfd9
15 changed files with 324 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM debian8_python3
ADD app /app
RUN pip3 install -r /app/requirements.txt
RUN (cd /app; python3 init.py)
ENTRYPOINT python3 /app/main.py