first commit

This commit is contained in:
2021-03-20 11:53:20 -05:00
parent 29e3a33f3d
commit af43f1b2bc
11 changed files with 1335 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:15.11.0-alpine3.10
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 3000
ENTRYPOINT ["node", "src/index.js"]