mirror of
https://github.com/shouptech/flask-tutorial.git
synced 2026-02-03 15:39:44 +00:00
10 lines
143 B
Docker
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"]
|