From 654154ebbeeb27f1fbbe4ce4d9bea19cdb234c7a Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Wed, 11 Jun 2025 11:39:53 -0300 Subject: [PATCH] refactor(docker): remove --extra deploy flag from uv sync commands (#8485) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 (build_and_push_with_extras.Dockerfile): remove unnecessary uv sync command options to improve build efficiency and reduce redundancy Co-authored-by: Gabriel Luiz Freitas Almeida --- docker/build_and_push_with_extras.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build_and_push_with_extras.Dockerfile b/docker/build_and_push_with_extras.Dockerfile index 36acd416e..0e9ff3cf5 100644 --- a/docker/build_and_push_with_extras.Dockerfile +++ b/docker/build_and_push_with_extras.Dockerfile @@ -40,7 +40,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=src/backend/base/README.md,target=src/backend/base/README.md \ --mount=type=bind,source=src/backend/base/uv.lock,target=src/backend/base/uv.lock \ --mount=type=bind,source=src/backend/base/pyproject.toml,target=src/backend/base/pyproject.toml \ - uv sync --frozen --no-install-project --no-editable --extra deploy --extra couchbase --extra cassio --extra local --extra clickhouse-connect --extra nv-ingest --extra postgresql + uv sync --frozen --no-install-project --no-editable --extra couchbase --extra cassio --extra local --extra clickhouse-connect --extra nv-ingest --extra postgresql COPY ./src /app/src @@ -58,7 +58,7 @@ COPY ./uv.lock /app/uv.lock COPY ./README.md /app/README.md RUN --mount=type=cache,target=/root/.cache/uv \ - uv sync --frozen --no-editable --extra deploy --extra couchbase --extra cassio --extra local --extra clickhouse-connect --extra nv-ingest --extra postgresql + uv sync --frozen --no-editable --extra couchbase --extra cassio --extra local --extra clickhouse-connect --extra nv-ingest --extra postgresql ################################ # RUNTIME