Datum/Zeit auf der X-Achse berichtigt
This commit is contained in:
+3
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user