FROM node:18-alpine WORKDIR /app COPY . . RUN npm install EXPOSE 9002 RUN npm run build CMD ["npm", "start"]