mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
16 lines
332 B
Docker
16 lines
332 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Копируем requirements.txt
|
|
COPY backend/requirements.txt .
|
|
|
|
# Устанавливаем зависимости
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Копируем исходники
|
|
COPY backend/ .
|
|
|
|
# Запускаем приложение
|
|
CMD ["python", "run.py"]
|