Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BeveledCube
/
image-gen
like
0
Runtime error
App
Files
Files
xet
Community
Fetching metadata from the HF Docker repository...
bd7827c
image-gen
/
Dockerfile
BeveledCube
Fix shi
bd7827c
over 1 year ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
python:
3.11
WORKDIR
/api
COPY
--
chown
=user ./ /api/
RUN
pip install --upgrade pip
RUN
pip install -r requirements.txt
RUN
mkdir
/api/models
RUN
chmod
a+rwx /api/models
EXPOSE
7860
CMD
[
"bash"
,
"start.sh"
]