ERROR: failed to solve: process "/bin/sh -c npm install && npm run build" did not complete successfully: exit code: 1
CMD ["npm", "start"]
сбилдить проект?FROM node:20
WORKDIR /app
COPY package*.json .
RUN npm install && npm run build
COPY . .
CMD ["npm", "start"]