Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Azzizz17
/
api
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
api
/
Dockerfile
Azzizz17
Add application file
cf6e4e0
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
196 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]