Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kanpand
/
abc
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
abc
/
Dockerfile
kanpand
Create Dockerfile
e0e18b0
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
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"
]