6 lines
106 B
Text
6 lines
106 B
Text
|
|
FROM python:latest
|
||
|
|
COPY . .
|
||
|
|
CMD python3 -m pip install -r requirements/docs.txt
|
||
|
|
RUN python3 -m flask run
|
||
|
|
|