mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
56 lines
1.1 KiB
Docker
56 lines
1.1 KiB
Docker
|
|
# Multi-stage Dockerfile for Next.js
|
||
|
|
|
||
|
|
# Stage 1: Install dependencies
|
||
|
|
FROM node:20-alpine AS deps
|
||
|
|
RUN apk add --no-cache libc6-compat
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copy package files
|
||
|
|
COPY package.json package-lock.json* ./
|
||
|
|
|
||
|
|
# Install dependencies
|
||
|
|
RUN npm ci
|
||
|
|
|
||
|
|
# Stage 2: Build application
|
||
|
|
FROM node:20-alpine AS builder
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copy node_modules from deps stage
|
||
|
|
COPY --from=deps /app/node_modules ./node_modules
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# Disable Next.js telemetry during build
|
||
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||
|
|
|
||
|
|
# Build Next.js application (standalone mode)
|
||
|
|
RUN npm run build
|
||
|
|
|
||
|
|
# Stage 3: Production runtime
|
||
|
|
FROM node:20-alpine AS runner
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
ENV NODE_ENV=production
|
||
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||
|
|
|
||
|
|
# Create non-root user for security
|
||
|
|
RUN addgroup --system --gid 1001 nodejs
|
||
|
|
RUN adduser --system --uid 1001 nextjs
|
||
|
|
|
||
|
|
# Copy necessary files
|
||
|
|
COPY --from=builder /app/public ./public
|
||
|
|
|
||
|
|
# Copy standalone build output
|
||
|
|
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
|
||
|
|
ENV HOSTNAME="0.0.0.0"
|
||
|
|
|
||
|
|
# Start the application
|
||
|
|
CMD ["node", "server.js"]
|
||
|
|
|