restructure
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-03-28 20:26:23 +05:00
parent 0e936fbb40
commit 135ed4fd7a
8 changed files with 2 additions and 3 deletions

View File

@@ -2,11 +2,10 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
COPY ./pomodoro_bot ./pomodoro_bot COPY ./src /app
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"]