feat: now compatible with kubernetes and docker :3
This commit is contained in:
13
bot/Dockerfile
Normal file
13
bot/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM node:latest
|
||||
|
||||
# Working dir
|
||||
RUN mkdir -p /emot/app
|
||||
WORKDIR /emot/app
|
||||
|
||||
# Install bot
|
||||
COPY package.json /emot/app
|
||||
RUN npm install
|
||||
COPY . /emot/app
|
||||
|
||||
# Start the bot
|
||||
CMD ["node", "index.js"]
|
Reference in New Issue
Block a user