11 lines
304 B
Docker
11 lines
304 B
Docker
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
|
|
|