FROM node:24-alpine COPY . /usr/src WORKDIR /usr/src RUN npm install RUN npm run build ENTRYPOINT ["/bin/sh", "-c" , "npm start"]