2025-05-07 10:03:24 +08:00

31 lines
717 B
Docker

# Use official Node.js v22.15.0 image
FROM node:22.15.0-alpine AS builder
# Set working directory
WORKDIR /app
# Install dependencies only when needed
COPY package.json package-lock.json ./
RUN npm ci --prefer-offline --no-audit
# Copy the rest of the application code
COPY . .
# Build the Next.js app
RUN npm run build
# Production image, copy built assets from builder
FROM node:22.15.0-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
# Copy only necessary files for running the app
COPY --from=builder /app/.next .next
COPY --from=builder /app/public ./public
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/node_modules ./node_modules
EXPOSE 3000
CMD ["npm", "start"]