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
2021-09-05 12:46:04 +02:00

11 lines
172 B
Docker

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" ]