Files
PrimoGuardBot-/Dockerfile
2026-02-17 11:24:55 +07:00

18 lines
393 B
Docker

# Базовый образ Python
FROM python:3.13-slim
# Рабочая директория
WORKDIR /app
# Копируем requirements.txt
COPY requirements.txt .
# Устанавливаем зависимости
RUN pip install --no-cache-dir -r requirements.txt
# Копируем все файлы проекта
COPY . .
# Запускаем бота
CMD ["python", "main.py"]