FROM docker.io/library/node:23 WORKDIR /app COPY index.js . COPY package.json . RUN npm install CMD ["npm", "start"]