# 1. Stage: Abhängigkeiten installieren FROM node:20-alpine AS deps WORKDIR /app COPY package.json package-lock.json* ./ RUN npm ci # 2. Stage: Builder (Der Code wird kompiliert) FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . # Hier werden auch die Environment Variables für den Build gebraucht # (In Dokploy setzt du diese später, aber für den Build ignorieren wir ESLint Fehler oft) ENV NEXT_TELEMETRY_DISABLED 1 RUN npm run build # 3. Stage: Runner (Das eigentliche Image für Dokploy - winzig klein) FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV production ENV NEXT_TELEMETRY_DISABLED 1 RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs # Wir kopieren nur das Nötigste aus dem Builder 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 3000 ENV PORT 3000 ENV HOSTNAME "0.0.0.0" CMD ["node", "server.js"]