What problem does it solve? Deploying a Litestar application to production involves many moving parts: multi-stage Dockerfiles, non-root users, signal handling, health checks, worker containers, and platform-specific configuration. This Skill provides tested deployment patterns so you avoid common pitfalls like broken graceful shutdowns, bloated images, and misconfigured probes. ## Core Features & Use Cases - Production Dockerfiles: Multi-stage builds with distroless runtime images, uv package management, Bun frontend asset builds, and multi-architecture (amd64/arm64) support. - Multi-Platform Targets: Ready-made configurations for Docker Compose, Railway, Kubernetes/GKE (HPA, Ingress, Workload Identity), Cloud Run, and systemd units. - Worker Separation: Dedicated SAQ worker container patterns with correct lifecycle settings and no HTTP exposure. - Use Case: You need to ship a Litestar app to GKE. The Skill gives you a distroless Dockerfile, Deployment/Service/HPA/Ingress manifests with health probes on /health, and a separate worker Deployment with a 120-second termination grace period. ## Quick Start Ask the AI to generate a production distroless Dockerfile and Kubernetes deployment manifests for your Litestar application with a separate SAQ worker container.