Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rr1
/
falai
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ae48592
falai
/
Dockerfile
rr1
Create Dockerfile
c0cc4f1
verified
6 months ago
raw
Copy download link
history
blame
Safe
310 Bytes
# 使用Node.js作为基础镜像
FROM
node:
18
# 设置工作目录
WORKDIR
/app
# 克隆仓库
RUN
git
clone
https://github.com/strykerx/falai-fluxui.git .
# 安装依赖
RUN
npm install
# 暴露默认端口(假设应用运行在3000端口)
EXPOSE
3000
# 设置容器启动命令
CMD
[
"npm"
,
"start"
]