Docker இமேஜ் оптимाइজ் செய்வது அளவு (சிறிய, வேகமான, மேலும் பாதுகாப்பான) மற்றும் பில்ட் பারফாரம்ச (caching மூலம் வேகமான பில்ட்கள்) குறைப்பை உள்ளடக்கியுள்ளது. நுட்பங்கள் குறைந்தபட்ச அடிப்படை இமேஜ்கள், multi-stage பில்ட்கள், லேயர் оптимাइз்ेশன், BuildKit, மற்றும் கவனமான Dockerfile ডিজাइன்।
இமேஜ் அளவு குறைத்தல்
✓ MINIMAL base images:
- alpine (tiny, ~5MB) — but musl libc can cause compatibility issues for some apps
- slim variants (e.g. python:3.12-slim) — smaller than full, fewer compat issues
- DISTROLESS — only the app + runtime, NO shell/package manager (smallest, most secure)
- scratch — empty base (for static binaries, e.g. Go) → minimal image
✓ MULTI-STAGE builds — build with tools, ship only the artifact (huge size savings)
✓ Combine RUN layers + clean up IN the same layer:
RUN apt-get update && apt-get install -y x && rm -rf /var/lib/apt/lists/*
(cleanup in a SEPARATE layer doesn't shrink the image — the files are in the earlier layer)
✓ .dockerignore — keep junk out of the context/image
✓ Remove caches, temp files, dev dependencies in production images
