FROM node:20-alpine AS deps WORKDIR /app COPY package*.json ./ RUN npm ci FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . # Enable standalone output for minimal production image RUN sed -i 's/const nextConfig = {/const nextConfig = {\n output: "standalone",/' next.config.mjs RUN npm run build FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production ENV PORT=7860 ENV HOSTNAME=0.0.0.0 RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs COPY --from=builder /app/public ./public COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static USER nextjs EXPOSE 7860 CMD ["node", "server.js"]