feat: initial RAG stack with README and env example

This commit is contained in:
2026-02-25 14:37:29 +00:00
commit f6b05c6f98
7 changed files with 339 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]