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...
24bdf15
chatgptssl
/
Dockerfile
cnmksjs
Rename dockerfile to Dockerfile
24bdf15
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"
]