File size: 170 Bytes
afecfbd
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM node:20.9
RUN git clone https://github.com/missuo/FreeGPT35
WORKDIR "FreeGPT35"
COPY . .
RUN npm i 
RUN chmod -R 777 /FreeGPT35
EXPOSE 3040
CMD ["node", "app.js"]