From 3d526b903f4187740e5c5f3e84bb734995f919fc Mon Sep 17 00:00:00 2001 From: PAVEL PALMA Date: Wed, 25 Feb 2026 02:14:40 -0600 Subject: [PATCH] Fix dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c61af70..3d0a95f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ WORKDIR /app # Install dependencies first (cached layer as long as lockfile doesn't change) COPY pyproject.toml uv.lock ./ +RUN uv lock --upgrade RUN uv sync --locked --no-install-project --no-editable # Copy the rest of the project and install it @@ -23,6 +24,7 @@ FROM quay.ocp.banorte.com/golden/python-312:latest WORKDIR /app COPY --from=builder /app/.venv /app/.venv +COPY --from=builder /app /app COPY config.yaml ./ ENV PATH="/app/.venv/bin:$PATH"