Переделал нахуй всё

This commit is contained in:
2024-12-01 11:31:39 +03:00
parent 78a1dd3d62
commit c379759418
16 changed files with 702 additions and 272 deletions

14
Dockerfile Normal file
View File

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