move Langfuse to shared lng cluster, add trace instrumentation

This commit is contained in:
2026-04-16 00:56:39 -03:00
parent 004c4a9e65
commit 22c924d3b0
9 changed files with 119 additions and 151 deletions

View File

@@ -4,12 +4,12 @@ WORKDIR /app
RUN pip install uv
COPY pyproject.toml ./
RUN uv sync --no-dev --no-install-project
COPY pyproject.toml uv.lock ./
RUN uv sync --no-dev --no-install-project --frozen
COPY mcp_servers/ mcp_servers/
COPY agents/ agents/
COPY api/ api/
CMD ["uv", "run", "uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
CMD ["uv", "run", "uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000"]