FROM node:19 EXPOSE 3000 COPY . /app WORKDIR /app RUN ["npm", "run", "build"] CMD ["npm", "run", "start"]