FROM python:3.10-slim WORKDIR /app # Install Python dependencies RUN pip install requests aiohttp mcp fastapi uvicorn sse-starlette COPY server.py . # Expose the port EXPOSE 7860 # Run the server CMD ["python", "server.py"]