FROM node:23 WORKDIR /usr/src/app COPY package*.json ./ RUN npm ci COPY . . EXPOSE 3000 CMD ["npm", "run", "prod", "src/index.js"]