Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mohamed41
/
FinalOne
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4cff6f8
FinalOne
/
dockerfile
Mohamed41
Upload 5 files
07e7b1e
almost 2 years ago
raw
Copy download link
history
blame
173 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
. .
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]