Compare commits

..

No commits in common. "0bfe5943718a107ce7804d7247a5b8ae1c2d04d4" and "1b1049acd2efbbe98b9a74a4d83b745724fb8a2d" have entirely different histories.

3 changed files with 1268 additions and 1101 deletions

View File

@ -1,15 +1,10 @@
FROM debian:9
RUN apt-get update -yq \
&& apt-get install curl gnupg -yq \
&& curl -sL https://deb.nodesource.com/setup_16.x |bash -\
&& apt-get install nodejs -yq \
&& apt-get clean -y
ADD . /app/
WORKDIR /app
RUN apt-get update -yq \
&& apt-get install curl gnupg -yq \
&& curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install nodejs -yq \
&& apt-get clean -y \
&& npm i
CMD node bot.js
CMD npm i && npm remove discord-api-types && npm i discord-api-types@0.27.2 && node bot.js

2344
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
{
"dependencies": {
"@discordjs/rest": "*",
"discord-api-types": "*",
"discord.js": "*",
"npm": "*"
"@discordjs/rest": "^0.3.0",
"discord-api-types": "^0.27.2",
"discord.js": "^13.6.0",
"npm": "^8.5.0"
}
}