diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..e20bbe6 --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,5 @@ +FROM node:12-alpine +WORKDIR /app +COPY . . +RUN yarn install --production +CMD ["node", "src/index.js"] \ No newline at end of file