Merge pull request 'Upgrade Package and Dockerfile' (#2) from botJS into main
Reviewed-on: 42CTF/bot#2
This commit is contained in:
commit
0bfe594371
17
Dockerfile
17
Dockerfile
|
@ -1,10 +1,15 @@
|
|||
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
|
||||
CMD npm i && npm remove discord-api-types && npm i discord-api-types@0.27.2 && node bot.js
|
||||
|
||||
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
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"@discordjs/rest": "^0.3.0",
|
||||
"discord-api-types": "^0.27.2",
|
||||
"discord.js": "^13.6.0",
|
||||
"npm": "^8.5.0"
|
||||
"@discordjs/rest": "*",
|
||||
"discord-api-types": "*",
|
||||
"discord.js": "*",
|
||||
"npm": "*"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue