Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
celise88
/
Pathfinder
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
870c9da
Pathfinder
/
Dockerfile
celise88
add job-match functionality
b2bedce
about 2 years ago
raw
Copy download link
history
blame
Safe
183 Bytes
FROM
python:
3.10
.
9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip3 install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]