14 lines
298 B
Docker
14 lines
298 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./pomodoro_bot /app/pomodoro_bot
|
|
COPY requirements.txt ./
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
RUN echo "== Содержимое /app/pomodoro_bot:" && ls -la /app/pomodoro_bot
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python", "-m", "pomodoro_bot.main"] |