ArthurY commited on
Commit
04267d2
·
1 Parent(s): 8266c65

fastmcp 2.12 dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -19,8 +19,8 @@ COPY mcp_output/requirements.txt /app/requirements.txt
19
  # Install Python dependencies
20
  RUN pip install --no-cache-dir -r /app/requirements.txt
21
 
22
- # Install FastAPI and Uvicorn for HTTP server (already included in fastmcp, but explicit for clarity)
23
- RUN pip install --no-cache-dir fastapi uvicorn
24
 
25
  # Create output directories with write permissions
26
  RUN mkdir -p /app/mcp_output/mcp_logs \
 
19
  # Install Python dependencies
20
  RUN pip install --no-cache-dir -r /app/requirements.txt
21
 
22
+ # Note: FastAPI and Uvicorn are already included as dependencies of fastmcp==2.12.4
23
+ # DO NOT reinstall them separately as it may upgrade fastmcp to a newer version
24
 
25
  # Create output directories with write permissions
26
  RUN mkdir -p /app/mcp_output/mcp_logs \