1
0
Fork 0
mirror of https://github.com/shouptech/flask-tutorial.git synced 2026-02-03 15:39:44 +00:00
flask-tutorial/Dockerfile
2018-11-02 18:53:39 -06:00

10 lines
143 B
Docker

FROM python:3
ADD . /app/
WORKDIR /app
RUN pip install -e .
RUN pip install waitress
CMD ["waitress-serve", "--call", "flaskr:create_app"]