first commit

This commit is contained in:
José Conde
2023-01-06 00:58:55 +01:00
commit 9a93aea9fe
18 changed files with 3080 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm i
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]