From 95c5474edf54c2cf80feacf5ec5147a04312c0de Mon Sep 17 00:00:00 2001 From: Cristian Date: Fri, 31 Jan 2025 22:26:32 -0300 Subject: [PATCH] fix: remove deprecated poetry config command from Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c89e44..4dc1783 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 . . @@ -22,3 +21,4 @@ COPY --from=builder /venv /venv ENV PATH="/venv/bin:${PATH}" ENTRYPOINT [ "mitmproxy2swagger" ] +