We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe25d7f commit 356894fCopy full SHA for 356894f
1 file changed
Dockerfile.dev
@@ -44,7 +44,9 @@ if ! /app/backend/.venv/bin/python -c "import sys" 2>/dev/null; then
44
else
45
# Venv works — run uv sync to pick up any new/changed dependencies
46
echo "[dev-entrypoint] Syncing dependencies..."
47
- cd /app/backend && uv sync --quiet 2>/dev/null || true
+ if ! (cd /app/backend && uv sync --quiet); then
48
+ echo "[dev-entrypoint] Warning: dependency sync failed; continuing with existing environment." >&2
49
+ fi
50
# Ensure watchmedo is there too
51
if ! command -v watchmedo >/dev/null 2>&1; then
52
cd /app/backend && uv pip install "watchdog[watchmedo]"
0 commit comments