You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
905 B
33 lines
905 B
2 years ago
|
# Install dependencies only when needed
|
||
|
FROM node:16-alpine AS deps
|
||
|
RUN apk add --no-cache libc6-compat
|
||
|
WORKDIR /app
|
||
|
COPY package.json pnpm-lock.yaml* ./
|
||
|
RUN yarn global add pnpm
|
||
|
RUN pnpm install
|
||
|
|
||
|
# Rebuild the source code only when needed
|
||
|
FROM node:16-alpine AS builder
|
||
|
WORKDIR /app
|
||
|
COPY --from=deps /app/node_modules ./node_modules
|
||
|
COPY . .
|
||
|
|
||
|
RUN npm run build
|
||
|
|
||
|
# Production image, copy all the files and run next
|
||
|
FROM node:16-alpine AS runner
|
||
|
WORKDIR /app
|
||
|
ENV NODE_ENV production
|
||
|
RUN addgroup --system --gid 1001 nodejs
|
||
|
RUN adduser --system --uid 1001 nextjs
|
||
|
COPY --from=builder /app/next.config.js ./
|
||
|
COPY --from=builder /app/public ./public
|
||
|
COPY --from=builder /app/package.json ./package.json
|
||
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||
|
|
||
|
USER nextjs
|
||
|
EXPOSE 3000
|
||
|
ENV PORT 3000
|
||
|
CMD ["node", "server.js"]
|