Docker Build with Tracking Build a Docker image with proper tagging and tracking: $ARGUMENTS Process 1. Determine the image tag - Use git SHA or timestamp, NEVER use alone 2. Build with cache busting when needed - For production builds: - For dev builds: - Always also tag as for convenience 3. Verify the build 4. Push to registry 5. Verify in registry Anti-Patterns (DO NOT) - Never build with just tag - Never skip pushing after building - Never deploy without verifying the image exists in the registry - Never use with mutable tags ---