58 lines
1.4 KiB
Docker
58 lines
1.4 KiB
Docker
# Multi-stage build for better layer caching and smaller final image
|
|
FROM node:18-alpine AS deps
|
|
WORKDIR /app
|
|
|
|
# Install dumb-init early
|
|
RUN apk add --no-cache dumb-init
|
|
|
|
# Copy package files first to leverage Docker layer caching
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies with optimized settings
|
|
RUN npm ci --prefer-offline --no-audit --frozen-lockfile
|
|
|
|
# Build stage
|
|
FROM node:18-alpine AS builder
|
|
WORKDIR /app
|
|
|
|
# Copy dependencies from deps stage
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
# Set Node.js memory limit for build
|
|
ENV NODE_OPTIONS="--max-old-space-size=1024"
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Build the application
|
|
RUN npm run build
|
|
|
|
# Production stage
|
|
FROM node:18-alpine AS runner
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Install dumb-init for proper signal handling
|
|
RUN apk add --no-cache dumb-init
|
|
|
|
# Create non-root user for security
|
|
RUN addgroup -g 1001 -S nodejs
|
|
RUN adduser -S nextjs -u 1001
|
|
|
|
# Copy necessary files from builder stage
|
|
COPY --from=builder /app/next.config.js* ./
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder /app/package.json ./package.json
|
|
|
|
# Copy built application
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
|
|
# Use dumb-init to handle signals properly
|
|
ENTRYPOINT ["dumb-init", "--"]
|
|
CMD ["node", "server.js"] |