FROM node:20-slim RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY package*.json ./ RUN npm install COPY . . RUN npm run build EXPOSE 7860 7000 2000 CMD ["node", "dist/index.js"]