AI Research Engine — self-hosted knowledge acquisition system
- 10 MCP tools via thin proxy on MacBook - Backend REST API + Dashboard on CT 145 Docker - Services: YaCy crawler, OpenSearch index, Qdrant vectors, Ollama LLM - All 4 services healthy and verified
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install --no-cache-dir fastapi uvicorn httpx python-dotenv
|
||||
|
||||
COPY backend.py .
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["python", "backend.py"]
|
||||
Reference in New Issue
Block a user