ajout de fichiers de configurqtion divers

This commit is contained in:
toine 2025-10-04 15:53:10 +02:00
parent fec74d9f83
commit 292c791a27
4 changed files with 64 additions and 0 deletions

8
frontend/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
from node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
#RUN npm run build
EXPOSE 3001
CMD ["npm", "run", "start", "--", "-p", "3001"]