Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
xuzhu123/flow2api
JasonChen
/
flow2api
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0f621e0
flow2api
/
Dockerfile
genz27
fix: 修复各个代码文件中对action参数的调用
c42cf8e
3 months ago
raw
Copy download link
history
blame
211 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
# 安装 Python 依赖
COPY
requirements.txt .
RUN
pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
COPY
. .
EXPOSE
8000
CMD
[
"python"
,
"main.py"
]