This commit is contained in:
2026-02-13 03:09:19 +05:00
commit 2204b615bc
13 changed files with 620 additions and 0 deletions

16
Dockerfile Normal file
View File

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