Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tianlong12
/
flux2api
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a44a64d
flux2api
/
Dockerfile
tianlong12
Create Dockerfile
6f484a9
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
133 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]