feat: v2 - OCI light theme, GenAI integration, MCP servers, ADB vector

This commit is contained in:
nogueiraguh
2026-02-27 18:54:38 -03:00
parent faf54ec611
commit c759d0f06d
11 changed files with 765 additions and 591 deletions

View File

@@ -7,9 +7,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
curl gcc libffi-dev && \
rm -rf /var/lib/apt/lists/*
# Install Python deps
# Install Python deps + OCI CLI
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir oci-cli
# Copy app
COPY app.py .

File diff suppressed because it is too large Load Diff

View File

@@ -3,3 +3,5 @@ uvicorn[standard]==0.30.0
python-multipart==0.0.12
PyJWT==2.9.0
python-dotenv==1.0.1
oci==2.133.0
oracledb==2.4.1