Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
microhum
/
MALI_Nurse_REST_API
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
21b1f8e
MALI_Nurse_REST_API
/
DockerFile
microhum
Init: huggingface space rest api
b4525ce
over 1 year ago
raw
Copy download link
history
blame
167 Bytes
FROM
python:
3.10
.
9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]