tommorow and week

This commit is contained in:
2026-03-30 21:23:44 +03:00
parent a6c6f061ce
commit 9a49271a0d
6 changed files with 142 additions and 43 deletions

View File

@@ -2,9 +2,17 @@ FROM python:3.11-slim
WORKDIR /app
# Устанавливаем переменные окружения для Python
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
# Копируем файлы зависимостей
COPY requirements.txt .
# Устанавливаем зависимости
RUN pip install --no-cache-dir -r requirements.txt
COPY *.py ./
# Копируем исходный код
COPY . .
CMD ["python", "bot.py"]