From a71f042656d6133d7e27e0499b5828cb0c10d3be Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 21:11:15 +0000 Subject: [PATCH] Fix(deps): remove redundant poetry install from Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e06b9d..bad4492 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,9 @@ WORKDIR /app COPY pyproject.toml poetry.lock* ./ COPY src/ ./src/ -# Export dependencies and install them, then install the project +# Export dependencies and install them RUN poetry export -f requirements.txt --output requirements.txt --without-hashes && \ - pip install --no-cache-dir --prefix="/install" -r requirements.txt && \ - poetry install --no-dev + pip install --no-cache-dir --prefix="/install" -r requirements.txt # Stage 2: Runtime