From b949c084e60116bdf980cf333c6e815db09ba771 Mon Sep 17 00:00:00 2001 From: jaimegarjr Date: Sun, 26 Jan 2025 16:45:06 -0600 Subject: [PATCH] update dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12f6987..bc97aed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,10 +28,10 @@ RUN poetry --version COPY pyproject.toml poetry.lock ./ # Copy the rest of the application code into the container -COPY . . +COPY . /app -# Install dependencies using Poetry -RUN poetry install --no-dev --no-interaction --no-root +# Install dependencies from requirements.txt +RUN pip install --no-cache-dir -r requirements.txt # Command to start the bot CMD ["python", "-m", "meowbot.bot.meowbot"]