What problem does it solve? Containerizing applications involves many subtle pitfalls—browser vs server URLs, healthcheck failures, startup ordering, and image security—that cause broken deployments and wasted debugging time. This Skill provides proven Dockerfile, docker-compose, and Helm chart patterns plus 15+ documented gotchas to get containers right the first time. ## Core Features & Use Cases - Dockerfile Generation: Multi-stage build patterns for FastAPI/Python (with uv) and Next.js (standalone output), including non-root users and BuildKit syntax. - docker-compose & Helm Charts: Compose configurations with healthchecks and dependency ordering, plus complete Helm chart structure with values.yaml patterns and CLI commands. - Production Security: Docker Hardened Images, Trivy vulnerability scanning, distroless base images, multi-arch builds, and BuildKit secret mounting. - Use Case: You have a FastAPI backend and Next.js frontend that need to run in Docker Compose locally and deploy to Kubernetes. Use this Skill to generate the Dockerfiles, compose file with proper networking, and a Helm chart while avoiding common traps like IPv6 healthcheck failures and localhost-in-container issues. ## Quick Start Containerize my FastAPI backend and Next.js frontend with Dockerfiles, a docker-compose file, and a Helm chart for Kubernetes deployment.