Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BeveledCube
/
bevelapi
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5516522
bevelapi
/
Dockerfile
BeveledCube
Fixed shi
5e7de02
9 months ago
raw
Copy download link
history
blame
Safe
214 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/cache
RUN
chmod
a+rwx /api/cache
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]