Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
smgc/flux2api
aithink
/
flux2api
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bc7ed47
flux2api
/
Dockerfile
smgc
Create Dockerfile
04d18d6
verified
7 months ago
raw
Copy download link
history
blame
Safe
135 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
app.py .
RUN
pip install --no-cache-dir flask requests
EXPOSE
8000
CMD
[
"python"
,
"app.py"
]