File size: 223 Bytes
447dc0d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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"]