Datum/Zeit auf der X-Achse berichtigt

This commit is contained in:
2026-05-17 10:07:53 +02:00
parent d579cd5ac6
commit 0a3e0fc2c1
4 changed files with 69 additions and 39 deletions
+3 -2
View File
@@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
WORKDIR /app
RUN apk add --no-cache python3 make g++
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build
@@ -12,7 +12,8 @@ ENV NODE_ENV=production
RUN apk add --no-cache python3 make g++
COPY package*.json ./
RUN npm ci --omit=dev
COPY --from=builder /app/node_modules ./node_modules
RUN npm prune --omit=dev
COPY --from=builder /app/build ./build
RUN mkdir -p data