JiuZZZ commited on
Commit
fb263ca
·
verified ·
1 Parent(s): f97059c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/jiuz-chn/cursor-to-openai:latest
2
+
3
+ COPY hf.js /app/hf.js
4
+
5
+ RUN npm install http-proxy-middleware
6
+
7
+ ENV HF_PORT=7860
8
+ EXPOSE 7860
9
+
10
+ CMD ["sh", "-c", "node hf.js & npm run start"]