From bcc8b0ecd520a1c3c7e58ee0c38f6686f0febab5 Mon Sep 17 00:00:00 2001 From: Kian Jones <11655409+kianjones9@users.noreply.github.com> Date: Wed, 27 Aug 2025 00:05:43 -0700 Subject: [PATCH] chore: pull in necessary changes to finish uv migration for oss (#4237) pull in necessary changes to finish uv migration for oss --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a25e0fd..a32bb425 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,11 +32,12 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/ # Copy dependency files first -COPY apps/core/pyproject.toml apps/core/uv.lock ./ +COPY pyproject.toml uv.lock ./ # Then copy the rest of the application code COPY . . -RUN uv sync --frozen --no-dev --no-install-project --all-extras --python 3.11 +# TODO: strip this out into more selective dependency installation +RUN uv sync --frozen --no-dev --all-extras --python 3.11 # Runtime stage FROM ankane/pgvector:v0.5.1 AS runtime