FROM node:24-slim WORKDIR /app COPY bot.js ./ COPY package*.json ./ RUN npm install --omit=dev CMD ["node", "bot.js"]