Files
pomodoro_tg_bot/Dockerfile
Sergey Bahmatov daadb37b65
All checks were successful
continuous-integration/drone/push Build is passing
push
2025-03-28 19:46:36 +05:00

11 lines
145 B
Docker

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