Local dev container workflow
Goal: Run your app the same way locally as it runs in production.
- Build the image with a dev tag.
- Run with `--rm` and required env vars/ports.
- Inspect logs and confirm the health endpoint works.
- Package dependencies inside the image (avoid host coupling).
- Move to Compose for multi-service local environments.