Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
rclon/na
new-one-api
/
api
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cbf58fc
api
/
Dockerfile
rclon
Update Dockerfile
cbf58fc
verified
6 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
# 第一阶段:构建阶段
FROM
pengzhile/new-api
# 创建 /data 目录并赋予 UID 1000 的用户权限
RUN
mkdir
-p /data &&
chown
777 /data
CMD
[
"/one-api"
]