diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c4c866b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:12.18.4 + +COPY ["package.json", "yarn.lock", "/."] + +RUN yarn install + +COPY . . + +CMD ["yarn", "start"] \ No newline at end of file