FROM node:latest WORKDIR /bot COPY package.json ./ COPY yarn.lock ./ RUN yarn install COPY . . ENTRYPOINT ["node", "aleebot.js"]