We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031fae7 commit 52a7d61Copy full SHA for 52a7d61
Dockerfile
@@ -6,14 +6,9 @@ FROM base AS deps
6
RUN apk add --no-cache libc6-compat
7
WORKDIR /app
8
9
-# Install package manager
10
-RUN --mount=type=cache,id=pnpm-auth-store,target=/root/.pnpm-store \
11
- npm i --global --no-update-notifier --no-fund pnpm@latest
12
-
13
14
# Install dependencies
15
COPY package.json ./
16
-RUN pnpm i
+RUN npm i
17
18
19
# Rebuild the source code only when needed
@@ -27,7 +22,7 @@ COPY . .
27
22
# Uncomment the following line in case you want to disable telemetry during the build.
28
23
# ENV NEXT_TELEMETRY_DISABLED 1
29
24
30
-RUN pnpm run build
25
+RUN npm run build
31
26
32
# Production image, copy all the files and run next
33
FROM base AS runner
0 commit comments