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