portfolio/Dockerfile
Chneemann 28e734897c
Some checks failed
Deploy Frontend to VPS / deploy (push) Failing after 1s
ci: add automated SSH deployment workflow
2026-07-30 11:29:24 +02:00

37 lines
No EOL
903 B
Docker

# 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"]