add Dockerfile

This commit is contained in:
Henning Jacobs
2016-12-13 09:28:58 +01:00
parent a2a7f0ee1f
commit 6e0dbe6529
2 changed files with 22 additions and 1 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM registry.opensource.zalan.do/stups/python:3.5.2-47
EXPOSE 8080
COPY requirements.txt /
RUN pip3 install -r /requirements.txt
COPY app.py /
COPY templates /templates
COPY static /static
COPY swagger.yaml /
WORKDIR /
CMD /app.py