Files
pomodoro_tg_bot/Dockerfile
Sergey Bahmatov 135ed4fd7a
Some checks failed
continuous-integration/drone/push Build is failing
restructure
2025-03-28 20:26:23 +05:00

12 lines
169 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY ./src /app
ENV PYTHONPATH=/app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-m", "pomodoro_bot.main"]