Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rooni
/
text2image-Pro
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
19ee245
text2image-Pro
/
Dockerfile
Rooni
Create Dockerfile
19ee245
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
FROM
python:
3.8
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"./app.py"
]