add docker image

This commit is contained in:
tdurieux
2018-10-02 12:59:45 +02:00
parent a1e2e41e5a
commit 051d11500a
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.7.0
ADD server.py /
ADD static /
ADD templates /
ADD requirements.txt /
RUN pip install --requirement requirements.txt
ENTRYPOINT [ "python", "./server.py" ]