docs: add lite image references across all documentation

README Quick Start now shows both :latest and :lite commands.
Getting Started adds a tip callout about the lite image.
Deployment page lists both variants with a comparison table and
updates the CI/CD description to mention both are built.
Developer guide adds the lite build command.
This commit is contained in:
Siddharth Kumar Sah
2026-04-05 08:01:18 +08:00
parent 9974ea5c09
commit be45d3ca80
4 changed files with 35 additions and 4 deletions
+6
View File
@@ -198,6 +198,12 @@ Build the full production image locally:
docker build -f docker/Dockerfile -t stirling-image:latest .
```
Build the lite image (no Python/AI, ~1.5 GB):
```bash
docker build --build-arg VARIANT=lite -f docker/Dockerfile -t stirling-image:lite .
```
Use BuildKit cache mounts for faster rebuilds:
```bash