Initial commit

This commit is contained in:
2021-03-08 22:55:20 +03:00
commit d54bbad252
9 changed files with 1583 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:14-alpine3.10
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
COPY . .
CMD ["node", "app/index.js"]