This commit is contained in:
PAVEL PALMA
2026-02-25 02:20:32 -06:00
parent 5c78887ba3
commit c7d9f25fa7

View File

@@ -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 ---