mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 10:50:52 +01:00
11 lines
192 B
Docker
11 lines
192 B
Docker
|
FROM python:3.11-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
|
||
|
|
||
|
COPY main.py .
|
||
|
|
||
|
CMD [ "python", "-u", "main.py" ]
|