FROM node:23.7.0-alpine WORKDIR /usr/src/app COPY package*.json ./ RUN npm ci COPY . . EXPOSE 4000 CMD ["node", "run", "start"]