chore(docker): remove redundant Admin UI build step

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.
This commit is contained in:
Mritunjay Kumar Sharma 2025-09-18 11:09:20 -05:00 committed by GitHub
parent 706b9214c0
commit 8b0e3c14ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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