Prepare Dockerfile

This commit is contained in:
Julia 2021-09-05 12:46:04 +02:00 committed by GitHub
parent fe2dfa720f
commit 3292328e69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:
USER node
WORKDIR /home/node
RUN git clone https://github.com/Morphious87/trol-bot trol-bot
WORKDIR /home/node/trol-bot
RUN npm i
CMD [ "node", "index.js" ]