This commit is contained in:
2026-01-30 10:44:07 +01:00
commit a1ddaf5a35
37 changed files with 16573 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM node:18-alpine
WORKDIR /app
# Zeitzone einrichten
RUN apk add --no-cache tzdata
ENV TZ=Europe/Berlin
# Package-Dateien kopieren
COPY package*.json ./
# Dependencies installieren
RUN npm ci --only=production
# Anwendungsdateien kopieren
COPY . .
# Ports freigeben
EXPOSE 3333 3334
# Anwendung starten
CMD ["node", "server.js"]