# 1. Dependencies installieren FROM node:20-alpine AS deps WORKDIR /app COPY package*.json ./ RUN npm ci # 2. Anwendung bauen FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npm run build # 3. Production Image ausführen (Node.js Server) FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production ENV PORT=3000 # Systemnutzer anlegen für mehr Sicherheit RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs # Public & Standalone Build kopieren 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 # Ordner für Analytics-Daten anlegen und Schreibrechte vergeben RUN mkdir -p /app/data && chown -R nextjs:nodejs /app/data USER nextjs EXPOSE 3000 CMD ["node", "server.js"]