|
| 1 | +FROM node:22.13.1-alpine AS base |
| 2 | + |
| 3 | +# Install dependencies only when needed |
| 4 | +FROM base AS deps |
| 5 | +# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. |
| 6 | +RUN apk update && apk upgrade && apk add --no-cache libc6-compat && npm i -g npm@latest |
| 7 | +WORKDIR /app |
| 8 | + |
| 9 | +# Install dependencies based on the preferred package manager |
| 10 | +COPY --link package.json yarn.lock* package-lock.json* pnpm-lock.yaml* bun.lockb* ./ |
| 11 | +RUN \ |
| 12 | + if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ |
| 13 | + elif [ -f package-lock.json ]; then npm ci --legacy-peer-deps; \ |
| 14 | + elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \ |
| 15 | + elif [ -f bun.lockb ]; then bun install --frozen-lockfile; \ |
| 16 | + else echo "Lockfile not found." && exit 1; \ |
| 17 | + fi |
| 18 | + |
| 19 | +# Rebuild the source code only when needed |
| 20 | +FROM base AS builder |
| 21 | +WORKDIR /app |
| 22 | +ENV NODE_ENV=production |
| 23 | +COPY --from=deps --link /app/node_modules ./node_modules |
| 24 | +COPY . . |
| 25 | + |
| 26 | +# Next.js collects completely anonymous telemetry data about general usage. |
| 27 | +# Learn more here: https://nextjs.org/telemetry |
| 28 | +# Uncomment the following line in case you want to disable telemetry during the build. |
| 29 | +# ENV NEXT_TELEMETRY_DISABLED=1 |
| 30 | + |
| 31 | +RUN \ |
| 32 | + if [ -f yarn.lock ]; then yarn run build; \ |
| 33 | + elif [ -f package-lock.json ]; then npm run build; \ |
| 34 | + elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \ |
| 35 | + elif [ -f bun.lockb ]; then bun run build; \ |
| 36 | + else echo "Lockfile not found." && exit 1; \ |
| 37 | + fi |
| 38 | + |
| 39 | +# Production image, copy all the files and run next |
| 40 | +FROM base AS runner |
| 41 | +WORKDIR /app |
| 42 | + |
| 43 | +ENV NODE_ENV=production |
| 44 | +# Uncomment the following line in case you want to disable telemetry during runtime. |
| 45 | +# ENV NEXT_TELEMETRY_DISABLED=1 |
| 46 | + |
| 47 | +RUN addgroup --system --gid 1001 nodejs |
| 48 | +RUN adduser --system --uid 1001 nextjs |
| 49 | + |
| 50 | +COPY --from=builder /app/public ./public |
| 51 | + |
| 52 | +# Set the correct permission for prerender cache |
| 53 | +RUN mkdir .next |
| 54 | +RUN chown nextjs:nodejs .next |
| 55 | + |
| 56 | +# Automatically leverage output traces to reduce image size |
| 57 | +# https://nextjs.org/docs/advanced-features/output-file-tracing |
| 58 | +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ |
| 59 | +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static |
| 60 | + |
| 61 | +USER nextjs |
| 62 | + |
| 63 | +EXPOSE 3000 |
| 64 | + |
| 65 | +ENV PORT=3000 |
| 66 | + |
| 67 | +# server.js is created by next build from the standalone output |
| 68 | +# https://nextjs.org/docs/pages/api-reference/next-config-js/output |
| 69 | +ENV HOSTNAME="0.0.0.0" |
| 70 | +CMD ["node", "server.js"] |
0 commit comments