From c7d9f25fa79ebc6c0f297135fd3d0bf226d12800 Mon Sep 17 00:00:00 2001 From: PAVEL PALMA Date: Wed, 25 Feb 2026 02:20:32 -0600 Subject: [PATCH] UPDATE --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf680ee..4129d06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,11 +11,12 @@ WORKDIR /app # Install dependencies first (cached layer as long as lockfile doesn't change) COPY pyproject.toml uv.lock ./ -RUN uv lock +RUN uv lock --upgrade RUN uv sync --locked --no-install-project --no-editable # Copy the rest of the project and install it COPY . . +RUN uv lock RUN uv sync --locked --no-editable # --- Final stage: no uv, no build artifacts ---