chore(dev): add containerized local development stack

This commit is contained in:
2026-03-16 14:25:00 +00:00
parent eb0fbf24f0
commit 5c2976b86d
5 changed files with 134 additions and 0 deletions

12
WebApp/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --no-fund --no-audit
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]