secruity usw

This commit is contained in:
2026-04-09 10:34:47 +02:00
parent c7491f9af5
commit 792f9bb2a6
5 changed files with 262 additions and 207 deletions

12
Dockerfile.dev Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"]