From 624a241bbf36f8d0555b171f46d114af52d89307 Mon Sep 17 00:00:00 2001 From: Hiep Le <69354317+hieptl@users.noreply.github.com> Date: Mon, 12 Jan 2026 02:27:44 +0700 Subject: [PATCH] refactor: Dockerfile (enterprise) (#12368) --- enterprise/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enterprise/Dockerfile b/enterprise/Dockerfile index e4f0997f75..62725957f3 100644 --- a/enterprise/Dockerfile +++ b/enterprise/Dockerfile @@ -24,9 +24,9 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # Install Python packages with security fixes -RUN pip install alembic psycopg2-binary cloud-sql-python-connector pg8000 gspread stripe python-keycloak asyncpg sqlalchemy[asyncio] resend tenacity slack-sdk ddtrace "posthog>=6.0.0" "limits==5.2.0" coredis prometheus-client shap scikit-learn pandas numpy google-cloud-recaptcha-enterprise && \ +RUN /app/.venv/bin/pip install alembic psycopg2-binary cloud-sql-python-connector pg8000 gspread stripe python-keycloak asyncpg sqlalchemy[asyncio] resend tenacity slack-sdk ddtrace "posthog>=6.0.0" "limits==5.2.0" coredis prometheus-client shap scikit-learn pandas numpy google-cloud-recaptcha-enterprise && \ # Update packages with known CVE fixes - pip install --upgrade \ + /app/.venv/bin/pip install --upgrade \ "mcp>=1.10.0" \ "pillow>=11.3.0"