Change dependency installation from pnpm to npm

This commit is contained in:
Andras Bacsai
2025-11-10 21:45:03 +01:00
committed by GitHub
parent 6535eda697
commit 993e4ca085

View File

@@ -17,7 +17,7 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_SKIP_DOWNLOAD=true
# Install dependencies
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install
RUN --mount=type=cache,id=pnpm,target=/pnpm/store npm install
# Build the Next.js app
FROM base AS builder