1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
FROM node:latest WORKDIR /usr/src/bot RUN apt-get update && apt-get install -y build-essential libtool autoconf automake python3 COPY package.json ./ COPY yarn.lock ./ RUN yarn install COPY . . ENTRYPOINT ["node", "bot_discord.js"]