FROM node:20 COPY build/* ./app EXPOSE 8888 RUN npm install RUN npm build CMD ["node", "app"]