Files
fefan/next/Dockerfile
2026-01-19 11:43:59 +01:00

32 lines
653 B
Docker

FROM node:20.10-alpine AS base
FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn --frozen-lockfile
# Copy source for runtime build
FROM base AS runner
WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
COPY --from=deps /app/node_modules ./node_modules
COPY . .
# Build at container startup instead of build time
RUN mkdir .next && chown nextjs:nodejs .next
USER nextjs
EXPOSE 3000
ENV PORT 3000
ENV HOSTNAME "0.0.0.0"
# Build and start in one step
CMD ["sh", "-c", "yarn build && yarn start"]