fix cloud docker runtime dependency install

This commit is contained in:
Francis Cao
2026-05-20 10:40:13 -07:00
parent 850fc192c9
commit 6e8660c397
+2 -6
View File
@@ -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}