Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sehsapneb
/
tcfh
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tcfh
/
Dockerfile
sehsapneb
Update Dockerfile
ecfdc10
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
231 Bytes
# dockerfile 使用基础镜像
FROM
ghcr.io/tbphp/gpt-load:latest
# 设置工作目录
WORKDIR
/app
COPY
.
env
/app/.env
# 暴露端口(根据实际应用需要)
EXPOSE
7860
# 启动命令
CMD
[
"docker-compose"
,
"up"
,
"-d"
]