Init NestJS, Dockerfile.dev

This commit is contained in:
R40fendt
2026-01-28 19:15:53 +01:00
parent 31163088be
commit 7ff43e7403
94 changed files with 10252 additions and 5374 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 3000
CMD ["npm", "run", "start:dev"]