ajout docker

This commit is contained in:
2025-01-03 09:26:47 +01:00
parent 4a0c080ad0
commit d5f034e47f
6 changed files with 149 additions and 16 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:16
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "server.js"]