flask/Dockerfile
2023-12-04 04:04:12 +00:00

5 lines
106 B
Docker

FROM python:latest
COPY . .
CMD python3 -m pip install -r requirements/docs.txt
RUN python3 -m flask run