fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 20:51:59 +05:00
parent 91364014c1
commit c676a388bd
8 changed files with 2 additions and 2 deletions

View File

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