Initial commit

This commit is contained in:
innotex
2026-01-16 18:40:39 +01:00
commit 9ec63a8aa2
76 changed files with 13235 additions and 0 deletions

18
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:18-alpine
WORKDIR /app
# Copier package.json
COPY package*.json ./
# Installer les dépendances
RUN npm ci
# Copier le code
COPY . .
# Exposer le port
EXPOSE 3000
# Commande de démarrage
CMD ["npm", "run", "dev"]