This commit is contained in:
xds
2026-02-02 16:15:17 +03:00
commit e6aad48e72
21 changed files with 631 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.13-slim
# Рабочая директория внутри контейнера
WORKDIR /app
# Копируем зависимости (если есть requirements.txt)
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Копируем код
COPY . .
# Запуск приложения (замени app.py на свой файл)
CMD ["python", "main.py"]