1er commit, mise en service

This commit is contained in:
2025-09-28 11:00:47 +02:00
parent be15fde570
commit 863666b009
8 changed files with 772 additions and 1 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:20-slim
WORKDIR /app
COPY package.json ./
RUN npm install --only=prod
COPY . .
CMD ["npm", "start"]