Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

20
Dockerfile.dev Normal file
View File

@@ -0,0 +1,20 @@
FROM node:18.14.2
WORKDIR /app
ENV NODE_OPTIONS=--openssl-legacy-provider
# Installiere Abhängigkeiten
COPY package*.json ./
RUN npm install
# Kopiere restliche Dateien und baue das Projekt
COPY . .
RUN npm run build
ENV PATH /app/node_modules/.bin:$PATH
# Exponiere den Port für den Entwicklungsserver
EXPOSE 3000
# Starte den Entwicklungsserver, wenn der Container ausgeführt wird
CMD ["npm", "run", "dev"]