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...
fa33eaa
mcp-hf
/
Dockerfile
elanuk
Update Dockerfile
305a880
verified
26 days ago
raw
Copy download link
history
blame
Safe
159 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
# Expose both ports
EXPOSE
7860
8000
CMD
[
"python"
,
"app.py"
]