Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mohamed41
/
medo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9f90e7d
medo
/
Dockerfile
Mohamed41
Rename dockerfile to Dockerfile
ebe9cfb
over 1 year 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"
]