Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zhofang
/
api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
317fd30
api
/
Dockerfile
Zhofang
Create Dockerfile
c215be6
verified
2 months ago
raw
Copy download link
history
blame
Safe
218 Bytes
FROM
python:
3.9
RUN
chmod
777 -R /root
WORKDIR
/app
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]