Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
holyterra
/
build-server
like
1
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
25c8591
build-server
/
Dockerfile
holyterra
Update Dockerfile
adf4eea
verified
6 months ago
raw
Copy download link
history
blame
Safe
222 Bytes
FROM
ghcr.io/znpos901/build-server:
0623
# 切换到user用户
USER
user
WORKDIR
/home/user
COPY
./unified-server.js /home/user/unified-server.js
# 暴露端口
EXPOSE
8889
# 启动命令
CMD
[
"node"
,
"unified-server.js"
]