File size: 173 Bytes
576d2cf
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:18  

WORKDIR /app  

COPY package.json .  
COPY index.js .  
COPY start.sh .  

RUN npm install  
RUN chmod +x start.sh  

EXPOSE 7860  

CMD ["/app/start.sh"]