docker node version 24
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-07-24 15:04:39 +02:00
parent c715295c72
commit 9e6318d516

View File

@@ -1,10 +1,10 @@
# --- Build stage --- # --- Build stage ---
FROM node:22 AS build FROM node:24 AS build
ENV NODE_ENV=production ENV NODE_ENV=production
ENV ORIGIN=https://tatort-dev.innovation-hub-niedersachsen.de ENV ORIGIN=https://tatort-dev.innovation-hub-niedersachsen.de
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm i RUN npm ci
COPY . ./ COPY . ./
COPY config_dev.json ./config.json COPY config_dev.json ./config.json
RUN npm run build RUN npm run build