Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wkplhc
/
demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
demo
/
Dockerfile
wkplhc
Update Dockerfile
4f5d116
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
208 Bytes
FROM
node:
18
-slim
WORKDIR
/app
# 复制依赖文件
COPY
package*.json ./
# 安装依赖
RUN
npm install
# 复制应用文件
COPY
. .
# 暴露端口
EXPOSE
7860
# 启动应用
CMD
[
"node"
,
"server.js"
]