Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sadg456
/
s
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
s
/
Dockerfile
sadg456
Update Dockerfile
4ecdf66
verified
14 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
275 Bytes
FROM
sing-box/sing-box:latest
# 复制本地配置文件到容器中
COPY
cf.json /etc/sing-box/config.json
# 暴露端口(根据你配置的端口改)
EXPOSE
7860
# 运行 sing-box,指定配置文件路径
CMD
[
"sing-box"
,
"run"
,
"-c"
,
"/etc/sing-box/config.json"
]