From 046689e3630e8a7df38943789b4afea43edb7701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 4 Mar 2026 19:19:45 +0100 Subject: [PATCH] fix: set CI=true for pnpm install -rP in frontend Dockerfile 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 448467b..17bf670 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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