Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Vaibhav84
/
ResumeAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6d97eef
ResumeAPI
/
Dockerfile
Vaibhav84
Db Connection added
6d97eef
about 1 year ago
raw
Copy download link
history
blame
Safe
212 Bytes
FROM
python:
3.9
.
4
COPY
. .
# Set the working directory to /
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]