This commit is contained in:
2025-08-13 13:05:31 +02:00
commit ecc54c0cfd
12 changed files with 1479 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Basis-Image
FROM node:20
# Arbeitsverzeichnis
WORKDIR /app
# Paketdateien kopieren und Abhängigkeiten installieren
COPY package*.json ./
RUN npm install
# Quellcode kopieren
COPY . .
# Port exposen
EXPOSE 3000
# Startbefehl
CMD ["npm", "start"]