tmpl-flask/Dockerfile

6 lines
133 B
Text
Raw Normal View History

2023-02-16 18:54:45 +04:00
FROM python:3-alpine
RUN apk update && apk upgrade && apk add python3-pip
COPY . .
RUN pip install -r requirements.txt
CMD make prod