blfm commited on
Commit
afecfbd
·
verified ·
1 Parent(s): c43c8a0

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20.9
2
+ RUN git clone https://github.com/missuo/FreeGPT35
3
+ WORKDIR "FreeGPT35"
4
+ COPY . .
5
+ RUN npm i
6
+ RUN chmod -R 777 /FreeGPT35
7
+ EXPOSE 3040
8
+ CMD ["node", "app.js"]
9
+
10
+