FROM node:22 RUN mkdir /app COPY . /app WORKDIR /app RUN npm ci RUN npm run build CMD ["npm", "run", "start"]