change Dockerfile and copy only package.json
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-07-24 14:51:57 +02:00
parent f6ed438908
commit e3eac5b441

View File

@@ -3,8 +3,8 @@ FROM node:22 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 ci RUN npm i
COPY . ./ COPY . ./
COPY config_dev.json ./config.json COPY config_dev.json ./config.json
RUN npm run build RUN npm run build