From 02b2314d8ff17d23965840118398857c73964c17 Mon Sep 17 00:00:00 2001 From: Sergey Bahmatov Date: Fri, 28 Mar 2025 20:37:24 +0500 Subject: [PATCH] fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 36641db..5fc5c06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ FROM python:3.11-slim WORKDIR /app -COPY ./src ./src +COPY ./src /app COPY requirements.txt ./ ENV PYTHONPATH=/app/src RUN pip install --no-cache-dir -r requirements.txt -CMD ["python", "-m", "pomodoro_bot.main"] +CMD ["python", "-m", "pomodoro_bot.main"] \ No newline at end of file