- Replace experimental node:sqlite with better-sqlite3 (stable API) - Replace try/catch migration pattern with schema_version tracking - Add SIGTERM/SIGINT handler for clean shutdown (DB flush, scheduler stop) - Fix BudgetPanel crash: remove undefined setShowAddCategory call - Update Dockerfile: remove --experimental-sqlite, add native build tools
39 lines
843 B
Docker
39 lines
843 B
Docker
# Stage 1: React Client bauen
|
|
FROM node:22-alpine AS client-builder
|
|
WORKDIR /app/client
|
|
COPY client/package*.json ./
|
|
RUN npm ci
|
|
COPY client/ ./
|
|
RUN npm run build
|
|
|
|
# Stage 2: Produktions-Server
|
|
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Server-Dependencies installieren (better-sqlite3 braucht Build-Tools)
|
|
COPY server/package*.json ./
|
|
RUN apk add --no-cache python3 make g++ && \
|
|
npm ci --production && \
|
|
apk del python3 make g++
|
|
|
|
# Server-Code kopieren
|
|
COPY server/ ./
|
|
|
|
# Gebauten Client kopieren
|
|
COPY --from=client-builder /app/client/dist ./public
|
|
|
|
# Fonts für PDF-Export kopieren
|
|
COPY --from=client-builder /app/client/public/fonts ./public/fonts
|
|
|
|
# Verzeichnisse erstellen
|
|
RUN mkdir -p /app/data /app/uploads/files /app/uploads/covers
|
|
|
|
# Umgebung setzen
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "src/index.js"]
|