diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9fb542a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:12 +COPY ./src ./ +COPY yarn.lock ./ +COPY package.json ./ +RUN yarn global add node-gyp && yarn install +RUN yarn start \ No newline at end of file