FROM node:latest # Working dir RUN mkdir -p /emot/app WORKDIR /emot/app # Install bot COPY ./bot /emot/app RUN npm install # Start the bot CMD ["node", "index.js"]