We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 862c831 commit 55262d9Copy full SHA for 55262d9
dockerfile
@@ -10,8 +10,8 @@ RUN yarn build
10
FROM node:22-alpine
11
WORKDIR /app
12
COPY --from=builder /app/.next ./.next
13
-COPY --from=builder /app/package*.json ./
14
-RUN npm ci --production
+COPY --from=builder /app/package.json yarn.lock ./
+RUN yarn install --production
15
16
EXPOSE 3000
17
-CMD ["npm", "start"]
+CMD ["yarn", "start"]
0 commit comments