FROM node:18-alpine

COPY ./ /app

WORKDIR /app

RUN apk add --no-cache g++ make python3 && npm install

CMD [ "node","bot.js" ]