FROM node:23-alpine3.20 COPY ./app/. /app/. WORKDIR /app RUN npm i -g pnpm RUN pnpm install RUN npm run build CMD npm start