This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
trol-bot-fork/Dockerfile

12 lines
172 B
Text
Raw Normal View History

2021-09-05 10:46:04 +00:00
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" ]