fix(docker): skip project install in uv sync (#35)

This commit is contained in:
Jorijn Schrijvershof
2026-01-08 21:51:14 +01:00
committed by GitHub
parent fb627fdacd
commit 26d5125e15
+1 -1
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