bc8631c49b
Moved from gnommoweb/agent-inference. Generic LLM inference bridge supporting litellm (anthropic/openai/ollama/lm_studio), Agent Zero MCP, and Hermes JSON-RPC WebSocket agent types. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
172 B
Docker
13 lines
172 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY server.py .
|
|
|
|
EXPOSE 8089
|
|
|
|
CMD ["python", "server.py"]
|