fix: set CI=true for pnpm install -rP in frontend Dockerfile
Some checks failed
Build and Push Backend Image / build (push) Failing after 28s
Build and Push Frontend Image / build (push) Successful in 4m50s

pnpm requires CI=true to allow non-interactive removal of node_modules
in CI environments without a TTY.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-04 19:19:45 +01:00
parent 9ba71239b7
commit 046689e363

View File

@@ -65,7 +65,7 @@ RUN pnpm --filter @sexy.pivoine.art/buttplug build
RUN pnpm --filter @sexy.pivoine.art/frontend build
# Prune dev dependencies for production
RUN pnpm install -rP
RUN CI=true pnpm install -rP
# ============================================================================
# Runner stage - minimal production image