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
Raw Normal View History

2021-09-05 17:46:52 +00:00
FROM node:latest
2021-09-05 10:46:04 +00:00
2021-09-05 17:53:21 +00:00
COPY --chown=node . /home/node/bot
2021-09-05 10:46:04 +00:00
2021-09-05 17:46:52 +00:00
USER node
WORKDIR /home/node/bot
2021-09-05 10:46:04 +00:00
RUN npm i
CMD [ "node", "index.js" ]