upgrade auf svelte5

This commit is contained in:
titver968
2025-04-08 11:13:23 +02:00
parent 31570ff196
commit a7f9a2b4a9
85 changed files with 8596 additions and 23 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# --- 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 pnpm ci
COPY . ./
RUN pnpm run build
# --- Production stage ---
FROM node:19-alpine3.16
COPY --from=build /app .
ENV HOST=0.0.0.0
EXPOSE 4173
CMD ["sh", "-c", "ORIGIN=https://tatort.innovation-hub-niedersachsen.de node build/index.js"]