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

10 lines
125 B
Docker

FROM node:latest
COPY --chown=node . /home/node/bot
USER node
WORKDIR /home/node/bot
RUN npm i
CMD [ "node", "index.js" ]