admin und user Passwort changed

This commit is contained in:
titver968
2025-03-08 11:06:48 +01:00
parent e11b79fca9
commit e20dd75166
2 changed files with 2 additions and 2 deletions

View File

@@ -6,12 +6,12 @@ WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . ./
RUN ORIGIN=https://tatort.innovation-hub-niedersachsen.de npm run build
RUN npm run build
# --- Production stage ---
FROM node:19-alpine3.16
COPY --from=build /app .
ENV HOST=0.0.0.0
EXPOSE 4173
CMD ["npm", "run", "preview","--", "--host", "0.0.0.0"]
CMD ["sh", "-c", "ORIGIN=https://tatort.innovation-hub-niedersachsen.de node build/index.js"]