first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-08-08 11:05:05 +02:00
commit 310978a53a
33 changed files with 15773 additions and 0 deletions

14
demo-client/Dockerfile Executable file
View File

@@ -0,0 +1,14 @@
# Dockerfile pour développement/demo Angular avec ng serve
FROM node:20
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 4200
CMD ["npx", "ng", "serve", "--host", "0.0.0.0"]