diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1c5c70d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:lts + +RUN git clone 'https://github.com/Legonzaur/goobot' /data +RUN ls /data +WORKDIR /data/goobot +RUN npm ci +# Currently fails because config json should be set as env variables +RUN npm run build + +ENTRYPOINT ["npm", "run", "start"] \ No newline at end of file