Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rr1
/
gmnb
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
gmnb
/
Dockerfile
rr1
Update Dockerfile
f88f5ab
verified
20 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
199 Bytes
FROM
ghcr.io/snailyp/gemini-balance:latest
# 暴露端口(如果需要)
EXPOSE
7860
RUN
chmod
-R 777 app
# 启动命令
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]