Compare commits

...

1 Commits

Author SHA1 Message Date
Jorijn Schrijvershof
1eba5b18f4 fix(docker): skip project install in uv sync 2026-01-08 21:49:20 +01:00

View File

@@ -40,7 +40,7 @@ ENV PATH="/opt/venv/bin:$PATH" \
# Install Python dependencies
COPY pyproject.toml uv.lock ./
RUN pip install --no-cache-dir --upgrade pip uv && \
uv sync --frozen --no-dev
uv sync --frozen --no-dev --no-install-project
# =============================================================================
# Stage 2: Runtime