Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coolmanx
/
cursor2a
like
1
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
cursor2a
/
Dockerfile
smgc
Update Dockerfile
1198080
verified
7 months ago
raw
Copy download link
history
blame
Safe
292 Bytes
# 使用官方的 Node.js 18 镜像作为基础镜像
FROM
node:
21
-alpine
# 设置工作目录
WORKDIR
/app
# 复制应用程序代码
COPY
. .
# 安装项目依赖
RUN
npm install express protobufjs uuid
# 暴露应用程序端口
EXPOSE
3000
# 启动应用程序
CMD
[
"node"
,
"app.js"
]