FROM debian:9 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