File size: 239 Bytes
a2cfefa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM node:20


WORKDIR /app


RUN apt-get update && apt-get install -y git


RUN git clone https://github.com/bahi-cloud/router1.git .


RUN npm install
RUN npm run build


ENV PORT=7860
ENV HOST=0.0.0.0


EXPOSE 7860


CMD ["npm","start"]