add Dockerfile
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user