What problem does it solve? Configuring Docker deployments on Render involves many platform-specific details—BuildKit behavior, Blueprint fields like dockerfilePath and dockerContext, private registry credentials, layer caching, and linux/amd64 constraints—that are easy to get wrong and slow to debug. ## Core Features & Use Cases - Blueprint Configuration: Guides runtime: docker vs runtime: image selection, dockerfilePath, dockerContext, dockerCommand, and registryCredential wiring. - Dockerfile Templates: Provides multi-stage build patterns for Node.js, Python, Go, Ruby, Rust, and static sites with non-root users and exec-based signal handling. - Registry & Optimization Guidance: Covers Docker Hub, GHCR, ECR, and Artifact Registry credential setup plus layer ordering, .dockerignore, and BuildKit cache/secret mounts. - Use Case: You need to deploy a private GHCR image to Render—use this Skill to configure runtime: image with registryCredential and immutable digest pinning. ## Quick Start Ask the assistant to write a production multi-stage Dockerfile and Render Blueprint configuration for your Node.js API service.