mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
The monolith images shipped whatever UI bundle was committed to litellm/proxy/_experimental/out, so refreshing the UI for a release meant running build_ui.sh out of band and committing the regenerated bundle. Add a ui-builder stage to all three monolith Dockerfiles (root, database, non_root) that compiles the Next.js static export from this exact source and replaces the committed bundle before the final uv sync. The stage is pinned with FROM --platform=$BUILDPLATFORM so the architecture-independent static export compiles once on the native builder even in a multi-arch (linux/amd64,linux/arm64) build, rather than once per target arch under QEMU emulation. The destination is cleared before the COPY because COPY merges directories and would otherwise leave the committed bundle's content-hashed chunks behind alongside the fresh ones. build_admin_ui.sh still runs afterward so the enterprise custom-color override is preserved. The UI base image is pinned by digest to match LITELLM_BUILD_IMAGE, LITELLM_RUNTIME_IMAGE and UV_IMAGE, and .dockerignore now excludes the local .next/out so a developer's build artifacts never enter the context.
58 lines
740 B
Text
58 lines
740 B
Text
docs
|
|
cookbook
|
|
.circleci
|
|
.github
|
|
tests
|
|
.git
|
|
.devcontainer
|
|
*.tgz
|
|
log.txt
|
|
docker/Dockerfile.*
|
|
|
|
# Claude Flow generated files (must be excluded from Docker build)
|
|
.claude/
|
|
.claude-flow/
|
|
.swarm/
|
|
.hive-mind/
|
|
memory/
|
|
coordination/
|
|
claude-flow
|
|
.mcp.json
|
|
hive-mind-prompt-*.txt
|
|
|
|
# Python virtual environments and version managers
|
|
.venv/
|
|
venv/
|
|
**/.venv/
|
|
**/venv/
|
|
.python-version
|
|
.pyenv/
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.pyc
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
**/pyvenv.cfg
|
|
|
|
# Common project exclusions
|
|
.vscode
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.DS_Store
|
|
**/node_modules
|
|
ui/litellm-dashboard/.next
|
|
ui/litellm-dashboard/out
|
|
litellm-rust/target/
|
|
litellm/rust_bridge/_native*.so
|
|
*.log
|
|
.env
|
|
.env.local
|