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...
62057cc
Pathfinder
/
Dockerfile
celise88
fix find-my-match paths
e54baff
about 2 years ago
raw
Copy download link
history
blame
Safe
181 Bytes
FROM
python:
3.10
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"
]