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...
17c4334
blackbox2api
/
Dockerfile
Rfym21
Create Dockerfile
17c4334
verified
12 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
# 使用指定的基础镜像
FROM
snailyc/blackbox2api:latest
# 设置环境变量
ENV
PORT
=8001 \
APP_SECRET
=Rfym21
# 暴露端口 8001
EXPOSE 8001
# 启动命令
CMD [
"python"
,
"main.py"
]