formaptix-server/Dockerfile

13 lines
193 B
Docker
Raw Normal View History

2024-08-08 22:14:02 +03:00
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