diff --git a/Dockerfile b/Dockerfile index d01d8fa..a784672 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,11 @@ FROM python:3.11-slim WORKDIR /app -COPY . . +COPY ./pomodoro_bot ./pomodoro_bot +COPY requirements.txt ./ ENV PYTHONPATH=/app RUN pip install --no-cache-dir -r requirements.txt -CMD ["python", "main.py"] \ No newline at end of file +CMD ["python", "-m", "pomodoro_bot.main"] \ No newline at end of file