diff --git a/Dockerfile b/Dockerfile index 881d356..a006949 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ FROM python:3.11-slim WORKDIR /app -COPY ./src/pomodoro_bot /app/pomodoro_bot +COPY ./pomodoro_bot /app/pomodoro_bot COPY requirements.txt ./ ENV PYTHONPATH=/app 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 diff --git a/src/pomodoro_bot/__init__.py b/pomodoro_bot/__init__.py similarity index 100% rename from src/pomodoro_bot/__init__.py rename to pomodoro_bot/__init__.py diff --git a/src/pomodoro_bot/bot.py b/pomodoro_bot/bot.py similarity index 100% rename from src/pomodoro_bot/bot.py rename to pomodoro_bot/bot.py diff --git a/src/pomodoro_bot/main.py b/pomodoro_bot/main.py similarity index 100% rename from src/pomodoro_bot/main.py rename to pomodoro_bot/main.py diff --git a/src/pomodoro_bot/models.py b/pomodoro_bot/models.py similarity index 100% rename from src/pomodoro_bot/models.py rename to pomodoro_bot/models.py diff --git a/src/pomodoro_bot/redis_client.py b/pomodoro_bot/redis_client.py similarity index 100% rename from src/pomodoro_bot/redis_client.py rename to pomodoro_bot/redis_client.py diff --git a/src/pomodoro_bot/timer_magager.py b/pomodoro_bot/timer_magager.py similarity index 100% rename from src/pomodoro_bot/timer_magager.py rename to pomodoro_bot/timer_magager.py diff --git a/src/pomodoro_bot/user_manager.py b/pomodoro_bot/user_manager.py similarity index 100% rename from src/pomodoro_bot/user_manager.py rename to pomodoro_bot/user_manager.py