Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
rclon/na
coteerratu
/
na
like
0
Running
App
Files
Files
Community
b760200
na
/
Dockerfile
rclon
Upload 3 files
9c38ab1
verified
21 days 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"
]