Bulk commit: Stand ende 22.01.

This commit is contained in:
2026-01-22 17:39:38 +01:00
parent cca316daf2
commit f8940b5dcc
75 changed files with 12419 additions and 6719 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:24.11.1-trixie-slim AS builder
WORKDIR /app
COPY . .
RUN npm i --legacy-peer-deps
RUN npm run build
FROM node:24.11.1-trixie AS runner
WORKDIR /app
COPY --from=builder /app/.output .
EXPOSE 3000
CMD [ "node", "./server/index.mjs" ]