Spaces:
Sleeping
Sleeping
File size: 228 Bytes
376fb94 edf7dab a4cc827 09588bc 13a1182 edf7dab 376fb94 edf7dab 09588bc 13a1182 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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"] |