Added Dev Dockerfile

This commit is contained in:
R40fendt
2026-01-28 19:15:35 +01:00
parent f04b4089f7
commit 2b23d501b9

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"]