FROM node:24-alpine WORKDIR /app COPY package.json ./ COPY index.js ./ CMD ["node", "index.js"]