From 7ddaa9237d54acf4bd95629c72a1c41314bae280 Mon Sep 17 00:00:00 2001 From: titver968 Date: Fri, 7 Mar 2025 11:38:34 +0100 Subject: [PATCH] Dockerfile --- tatort/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tatort/Dockerfile b/tatort/Dockerfile index 9485a77..f74d325 100644 --- a/tatort/Dockerfile +++ b/tatort/Dockerfile @@ -1,11 +1,12 @@ # --- Build stage --- FROM node:19 as build ENV NODE_ENV=production +ENV ORIGIN=https://tatort.innovation-hub-niedersachsen.de WORKDIR /app COPY package*.json ./ RUN npm ci COPY . ./ -RUN npm run build +RUN ORIGIN=https://tatort.innovation-hub-niedersachsen.de npm run build # --- Production stage --- FROM node:19-alpine3.16