Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cnmksjs
/
chatgptssl
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ed7a249
chatgptssl
/
dockerfile
cnmksjs
Create dockerfile
ed7a249
verified
4 months ago
raw
Copy download link
history
blame
Safe
209 Bytes
# 使用指定的基础镜像
FROM
dairoot/chatgpt-gateway:latest
# 暴露容器端口
EXPOSE
8787
# 启动命令(可以根据实际需求进行修改)
CMD
[
"bash"
,
"-c"
,
"while :; do sleep 1000; done"
]