Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BeveledCube
/
image-gen
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b38b153
image-gen
/
Dockerfile.gradio
BeveledCube
Trying sum
3b3a783
about 1 year ago
raw
Copy download link
history
blame
Safe
189 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
RUN
apt-get update && apt-get install -y git
COPY
. /app
RUN
pip install --no-cache-dir gradio Pillow
EXPOSE
80
CMD
[
"python"
,
"tld/gradio_app.py"
]