Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Rfym21/bb2api
dan92
/
blackbox2api
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
30c8c0b
blackbox2api
/
Dockerfile
Rfym21
Update Dockerfile
30c8c0b
verified
11 months ago
raw
Copy download link
history
blame
Safe
188 Bytes
# 使用指定的基础镜像
FROM
snailyc/blackbox2api
# 设置环境变量
ENV
PORT
=8001 \
APP_SECRET
=Rfym21
# 暴露端口 8001
EXPOSE 8001
# 启动命令
CMD [
"python"
,
"main.py"
]