11 lines
333 B
Docker
11 lines
333 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir deepagents langchain-ollama langgraph \
|
|
fastapi uvicorn langchain-mcp-adapters langchain-community httpx
|
|
|
|
COPY agent.py channels.py vram_manager.py router.py agent_factory.py hello_world.py .
|
|
|
|
CMD ["uvicorn", "agent:app", "--host", "0.0.0.0", "--port", "8000"]
|