Switch to agent arch

This commit is contained in:
2026-02-20 08:59:43 +00:00
parent a53f8fcf62
commit 259a8528e3
113 changed files with 788 additions and 7820 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM quay.ocp.banorte.com/golden/python-312:latest
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
WORKDIR /app
COPY . .
RUN uv sync
ENV PATH="/app/.venv/bin:$PATH"
CMD ["uv", "run", "uvicorn", "rag_eval.server:app", "--host", "0.0.0.0"]