Upload dockerfile

This commit is contained in:
2023-07-07 17:38:02 +02:00
parent f8600d5ad1
commit 9e6dc5ebdd
+10
View File
@@ -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"]