Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rclon
/
na
like
18
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
9c38ab1
na
/
Dockerfile
rclon
Upload 3 files
9c38ab1
verified
3 months ago
raw
Copy download link
history
blame
Safe
246 Bytes
FROM
pengzhile/new-api
RUN
apk add --no-cache nginx && \
mkdir -p /data && chmod
777
/data
COPY
nginx.conf /etc/nginx/nginx.conf
EXPOSE
7860
# 创建一个启动脚本
COPY
start.sh /start.sh
RUN
chmod
+x /start.sh
CMD
[
"/start.sh"
]