added dockerfile with config

This commit is contained in:
777LinkTriforce 2021-01-10 14:17:56 -06:00
parent 3de6451f5c
commit e4e00e7f6c
1 changed files with 5 additions and 0 deletions

5
app/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM node:12-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]