This commit is contained in:
Lukian LEIZOUR 2024-06-01 19:14:23 +02:00
parent 0bac40a72f
commit 8ace4a6356
6 changed files with 32 additions and 7 deletions

9
DOCKERFILE Normal file
View file

@ -0,0 +1,9 @@
FROM node:latest
WORKDIR /app
COPY . /app
RUN npm i
CMD ["npm", "run", "start"]