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...
main
mcp-hf
/
Dockerfile
elanuk
Update Dockerfile
139f05b
verified
19 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
# Expose both ports
EXPOSE
7860
8000
# Run server.py
CMD
[
"python"
,
"server.py"
]