feat: now compatible with kubernetes and docker :3

This commit is contained in:
2024-01-12 20:40:15 -05:00
parent 88b9b5b8c6
commit ed3a533e6d
15 changed files with 15 additions and 12 deletions

13
bot/Dockerfile Normal file
View 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"]