formaptix-server/Dockerfile
2024-08-08 22:14:02 +03:00

13 lines
No EOL
193 B
Docker

FROM python:bullseye
RUN apt-get update -y
RUN apt-get upgrade -y
RUN pip install pip -U
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD python main.py