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

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -6,12 +6,12 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci
COPY . ./ COPY . ./
RUN ORIGIN=https://tatort.innovation-hub-niedersachsen.de npm run build RUN npm run build
# --- Production stage --- # --- Production stage ---
FROM node:19-alpine3.16 FROM node:19-alpine3.16
COPY --from=build /app . COPY --from=build /app .
ENV HOST=0.0.0.0 ENV HOST=0.0.0.0
EXPOSE 4173 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"]