dockerfiles + env lice
This commit is contained in:
parent
d4127f25ce
commit
09c555ec78
|
@ -0,0 +1,5 @@
|
||||||
|
bot.py
|
||||||
|
README.md
|
||||||
|
node_modules
|
||||||
|
env.list
|
||||||
|
.git
|
|
@ -0,0 +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
|
||||||
|
CMD npm i && npm remove discord-api-types && npm i discord-api-types@0.27.2 && node bot.js
|
||||||
|
|
Loading…
Reference in New Issue