massage 1

This commit is contained in:
0xbovs1
2024-12-21 12:38:57 +00:00
parent 8c6bcd76d0
commit f5d2051360
23 changed files with 623 additions and 0 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"]