# # LMGCITFY Dockerfile # FROM docker.io/library/node:22 AS prod RUN npm install && \ npm run build EXPOSE 5000 ENTRYPOINT [ "npm", "run", "start" ]