Prepare Dockerfile
This commit is contained in:
parent
fe2dfa720f
commit
3292328e69
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal 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" ]
|
Reference in a new issue