File size: 203 Bytes
559b758
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM node:20-slim

WORKDIR /app

RUN npm config set registry https://registry.npmmirror.com

COPY package*.json ./

RUN npm install

COPY . .

ENV NODE_ENV=production

EXPOSE 7860

CMD ["node", "app.js"]