docker-builder
Installation
SKILL.md
docker-builder
Production-grade Docker patterns for Python APIs with an emphasis on security and reproducibility.
Overview
Use multi-stage builds, small base images, and deterministic installs to produce minimal, secure runtime images. Prioritize cache-friendly layer ordering and proper signal handling.
When to Use
- Shipping FastAPI/Flask APIs to production
- Reducing image size and build times
- Standardizing container builds for teams
Quick Start
Related skills