Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
BeveledCube
/
image-gen
like
0
Runtime error
App
Files
Files
Community
3b3a783
image-gen
/
Dockerfile
BeveledCube
Pls work
a2422c2
8 months ago
raw
Copy download link
history
blame
Safe
133 Bytes
FROM
python:
3.11
WORKDIR
/api
COPY
./ /api/
RUN
mkdir
/api/cache
RUN
chmod
a+rwx /api/cache
EXPOSE
7860
CMD
[
"bash"
,
"start.sh"
]