FROM node

RUN npm install -g yarn

COPY package.json /app/

WORKDIR /app

RUN yarn

COPY . /app/

CMD node bot.js

