This commit is contained in:
2026-03-01 21:40:09 +05:00
parent d37c255994
commit a1dd1a3279
10 changed files with 186 additions and 119 deletions

13
Dockerfile.api 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"]