diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1d48eb2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:12 + +COPY . /user/src/app + +RUN yarn global add node-gyp && yarn install + +EXPOSE 3000 + +CMD ["yarn","start"] + +