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