2022-02-09 22:23:08 +00:00
|
|
|
# Install dependencies only when needed
|
|
|
|
FROM node:16-alpine AS deps
|
|
|
|
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN npm 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
|
2022-02-09 22:45:51 +00:00
|
|
|
# or pandoc/core@alpine
|
|
|
|
# FROM pandoc/core AS runner
|
|
|
|
FROM alpine:latest AS runner
|
2022-02-09 22:23:08 +00:00
|
|
|
RUN apk add nodejs npm
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# You only need to copy next.config.js if you are NOT using the default configuration
|
|
|
|
# COPY --from=builder /app/next.config.js ./
|
|
|
|
COPY --from=builder /app/public ./public
|
|
|
|
COPY --from=builder /app/package.json ./package.json
|
|
|
|
|
|
|
|
# Automatically leverage output traces to reduce image size
|
|
|
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
|
|
|
COPY --from=builder --chown=nextjs:nodejs /app ./
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
EXPOSE 3001
|
|
|
|
ENV PORT 3001
|
|
|
|
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
CMD ["npm", "run", "start"]
|