Files
pomodoro_tg_bot/Dockerfile
Sergey Bahmatov 9e1e5c16da
All checks were successful
continuous-integration/drone/push Build is passing
fix Dockerfile
2025-03-28 20:02:49 +05:00

13 lines
210 B
Docker

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