Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rhk1999
/
Gemini
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Gemini
/
Dockerfile
rhk1999
Create Dockerfile
824bf47
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
FROM
ghcr.io/snailyp/gemini-balance:latest
# 暴露端口(如果需要)
EXPOSE
7860
# 启动命令
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]