Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yukee1992/sd-xl-book-illustrator
yukee1992
/
Image_generator
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b3e89b7
Image_generator
/
Dockerfile
yukee1992
Create Dockerfile
385f56d
verified
7 months ago
raw
Copy download link
history
blame
Safe
176 Bytes
# Dockerfile
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
# Expose both ports
EXPOSE
8000
7860
CMD
[
"python"
,
"app.py"
]