Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sajaxs
/
BlackBox2API
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
59093e2
BlackBox2API
/
Dockerfile
Rfym21
Create Dockerfile
17c4334
verified
7 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
195 Bytes
# 使用指定的基础镜像
FROM
snailyc/blackbox2api:latest
# 设置环境变量
ENV
PORT
=8001 \
APP_SECRET
=Rfym21
# 暴露端口 8001
EXPOSE 8001
# 启动命令
CMD [
"python"
,
"main.py"
]