First commit

This commit is contained in:
rxf
2026-01-28 20:01:48 +01:00
commit ec4b1a250d
13 changed files with 3553 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Multi-stage build: Leichtgewichtiger Container
FROM node:18-alpine
# Setze Arbeitsverzeichnis
WORKDIR /app
# Installiere Dependencies
COPY package.json .
RUN npm install --production
# Kopiere die Anwendung
COPY server.js .
COPY static/ static/
COPY views/ views/
# Exponiere Port
EXPOSE 5003
# Starten Sie die Anwendung
CMD ["node", "server.js"]