Files
homelab/edu_master/lessons_bot/Dockerfile
T
2025-11-11 00:02:49 +01:00

16 lines
316 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Установка зависимостей
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копирование кода
COPY config.py .
COPY utils.py .
COPY handlers.py .
COPY main.py .
# Запуск бота
CMD ["python", "-u", "main.py"]