FROM node:20 WORKDIR /app # Copy dependency info and install COPY package*.json ./ RUN npm install # Copy the rest of the app (including bot/ directory) COPY . . # Set working dir to bot folder WORKDIR /app/bot CMD ["node", "bot.js"]