Files
pomodoro_tg_bot/Dockerfile
Sergey Bahmatov 586a4000fe
All checks were successful
continuous-integration/drone/push Build is passing
fix
2025-03-28 20:39:06 +05:00

13 lines
202 B
Docker

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