mirror of
https://github.com/grey-cat-1908/formaptix-server.git
synced 2024-11-11 18:57:27 +03:00
13 lines
193 B
Docker
13 lines
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
|