This commit is contained in:
2026-04-26 22:02:24 +02:00
commit 73442783b7
1470 changed files with 43422 additions and 0 deletions

17
Dockerfile.dev Normal file
View File

@@ -0,0 +1,17 @@
FROM node:20-alpine
WORKDIR /app
# nur package-Dateien zuerst, damit Docker-Cache greift
COPY package*.json ./
RUN npm install
# Rest des Codes
COPY . .
# Vite Dev-Server
EXPOSE 1420
CMD ["npm", "run", "dev", "--", "--host"]