Updated to Node:16.9 & Discord.js:13. Added support for ytsearch.

This commit is contained in:
Rob
2023-04-24 16:16:40 -07:00
parent 668e57d2f6
commit 8e6b46d115
8 changed files with 127 additions and 2466 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD [ "node", "bot.js" ]