From 6e8660c3975d8e250efdcfc877c2d7b6da24e7fc Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Wed, 20 May 2026 10:40:13 -0700 Subject: [PATCH] fix cloud docker runtime dependency install --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ebd6866d4..90fb0c867 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,14 +39,10 @@ ENV NODE_OPTIONS=$NODE_OPTIONS RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs RUN set -x \ - && apk add --no-cache curl \ - && npm install -g pnpm@${PNPM_VERSION} - -# Keep the repo's pnpm build-script policy available in this stage. -COPY pnpm-workspace.yaml ./ + && apk add --no-cache curl # Script dependencies -RUN pnpm --allow-build='@prisma/engines,prisma' add npm-run-all dotenv chalk semver \ +RUN npm install --no-save npm-run-all dotenv chalk semver \ prisma@${PRISMA_VERSION} \ @prisma/client@${PRISMA_VERSION} \ @prisma/adapter-pg@${PRISMA_VERSION}