Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
elanuk
/
mcp-hf
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4738572
mcp-hf
/
Dockerfile
elanuk
Rename Dockerfile.txt to Dockerfile
434f7fa
verified
20 days ago
raw
Copy download link
history
blame
Safe
164 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"uvicorn"
,
"server:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]