diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3fa1598 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:latest + +# Working dir +RUN mkdir -p /usr/src/bot +WORKDIR /usr/src/bot + +# Install bot +COPY package.json /usr/src/bot +RUN npm install +COPY . /usr/src/bot/ + +# Start the bot +CMD ["node", "index.js"] \ No newline at end of file