This commit is contained in:
DarkCat09 2023-02-16 18:54:45 +04:00
parent b6c138b452
commit 13f10ab255
4 changed files with 25 additions and 2 deletions

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM python:3-alpine
RUN apk update && apk upgrade && apk add python3-pip
COPY . .
RUN pip install -r requirements.txt
CMD make prod