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