Add Auth v2 #12

Merged
A8065384 merged 11 commits from merge-conflicts-resolved into main 2026-02-25 17:00:53 +00:00
Showing only changes of commit c7d9f25fa7 - Show all commits

View File

@@ -11,11 +11,12 @@ WORKDIR /app
# Install dependencies first (cached layer as long as lockfile doesn't change) # Install dependencies first (cached layer as long as lockfile doesn't change)
COPY pyproject.toml uv.lock ./ COPY pyproject.toml uv.lock ./
RUN uv lock RUN uv lock --upgrade
RUN uv sync --locked --no-install-project --no-editable RUN uv sync --locked --no-install-project --no-editable
# Copy the rest of the project and install it # Copy the rest of the project and install it
COPY . . COPY . .
RUN uv lock
RUN uv sync --locked --no-editable RUN uv sync --locked --no-editable
# --- Final stage: no uv, no build artifacts --- # --- Final stage: no uv, no build artifacts ---