bot/Dockerfile

16 lines
283 B
Docker
Raw Normal View History

2022-02-18 20:54:27 +01:00
FROM debian:9
2022-05-27 12:58:41 +02:00
2022-02-18 20:54:27 +01:00
ADD . /app/
WORKDIR /app
2022-05-27 12:58:41 +02:00
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
2022-02-18 20:54:27 +01:00