Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
parkerjj
/
BuckLakeAI
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a65e7e5
BuckLakeAI
/
Dockerfile
parkerjj
Change to Gradio
fe0aec3
3 months ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
python:
3.10
-slim
# 设置工作目录
WORKDIR
/app
# 复制项目文件
COPY
. .
# 安装依赖
RUN
pip install -r requirements.txt
# 暴露应用端口
EXPOSE
63468
# 运行应用
CMD
[
"python"
,
"app.py"
]