This commit is contained in:
2026-02-03 17:15:58 +05:00
commit 335db59c9c
11 changed files with 738 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.14-slim
WORKDIR /app
# Копируем зависимости
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копируем приложение
COPY . .
# Стартуем приложение
CMD ["python", "main.py"]