Install only dev uv environment in Docker (#1438)

This commit is contained in:
Erik Vroon
2025-11-17 14:50:44 +01:00
committed by GitHub
parent aee66210f2
commit 4bb122ec37
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ on:
workflow_dispatch:
pull_request:
paths:
- '.github/**'
- 'backend/**'
- 'frontend/**'
- 'docker-compose.yml'

View File

@@ -14,7 +14,7 @@ USER bracket
RUN set -ex \
&& pip3 install --upgrade pip uv wheel virtualenv \
&& uv sync
&& uv sync --no-dev
EXPOSE 8400