From 0606380636a6cbf77e08003128ed91b32b5041f0 Mon Sep 17 00:00:00 2001 From: sv-00 <108364852+sv-00@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:23:39 +0530 Subject: [PATCH] Fix: Remove invalid 'poetry config warnings.export' command from Dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c89e44..64ce7b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ WORKDIR /app RUN uv pip install --system poetry poetry-plugin-export COPY pyproject.toml poetry.lock ./ RUN uv venv /venv && \ - poetry config warnings.export false && \ poetry export -f requirements.txt -o requirements.txt && \ VIRTUAL_ENV=/venv uv pip install -r requirements.txt COPY . .