Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
WhoDat55
/
Hackathon_Core_MCP
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a2ce4ac
Hackathon_Core_MCP
/
Dockerfile
WhoDat55
Update Dockerfile
1aa5492
verified
5 months ago
raw
Copy download link
history
blame
201 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"uvicorn"
,
"core_mcp:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]