From 8b0e3c14ff04deb5c4d3c61d9fbee711383e9cf8 Mon Sep 17 00:00:00 2001 From: Mritunjay Kumar Sharma Date: Thu, 18 Sep 2025 11:09:20 -0500 Subject: [PATCH] chore(docker): remove redundant Admin UI build step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Admin UI is already built before packaging, so the second invocation of docker/build_admin_ui.sh after PyJWT adjustments was unnecessary. Removing it speeds up the builder stage, reduces cache invalidation, and doesn’t change the resulting wheel or runtime image. --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index addc109e10..f85582f992 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,9 +41,6 @@ RUN pip uninstall jwt -y RUN pip uninstall PyJWT -y RUN pip install PyJWT==2.9.0 --no-cache-dir -# Build Admin UI -RUN chmod +x docker/build_admin_ui.sh && ./docker/build_admin_ui.sh - # Runtime stage FROM $LITELLM_RUNTIME_IMAGE AS runtime