First commit - V 1.0.0

This commit is contained in:
rxf
2025-08-12 13:44:06 +00:00
commit 52fb37517a
11 changed files with 1814 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
# Node.js 20 LTS als Basis
FROM node:20-alpine
# Arbeitsverzeichnis
WORKDIR /app
# package.json + package-lock.json kopieren
COPY package*.json ./
# Dependencies installieren
RUN npm install
# Restliche App-Dateien kopieren
COPY . .
# Port in Container
EXPOSE 3000
# Startkommando
# CMD ["npm", "run", "dev"]
CMD ["npm", "start"]