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...
36cbcc0
flow2api
/
Dockerfile
TheSmallHanCat
feat:flow2api初版
36cbcc0
5 months ago
raw
Copy download link
history
blame
Safe
162 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8000
CMD
[
"python"
,
"main.py"
]