Files
kops-arm64/Dockerfile
Henning Jacobs 6e0dbe6529 add Dockerfile
2016-12-13 09:28:58 +01:00

15 lines
236 B
Docker

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