What problem does it solve? Deploying Bun applications in Docker requires choosing the right base image, structuring multi-stage builds, managing lockfiles, and handling production concerns like non-root users and health checks, which is error-prone without a reference. ## Core Features & Use Cases - Dockerfile Templates: Provides basic, multi-stage production, Alpine, distroless, and compiled-binary Dockerfile patterns using official oven/bun images. - Docker Compose Setups: Includes production compose files with PostgreSQL and development setups with hot-reload via volume mounts. - Production Hardening: Covers caching optimization, .dockerignore, health checks, environment variables, non-root execution, and secure dependency installation. - Use Case: You have a Bun HTTP server and need a slim production image. Use the multi-stage build pattern to compile the app, copy only production dependencies, and run as the bun user on oven/bun:1-slim. ## Quick Start Ask the assistant to generate a production multi-stage Dockerfile for your Bun application using the official oven/bun image.