The Blue object has a Static Collider i.e. non-moving as it doesn’t have a Rigidbody.
You should be moving it Kinematically so add a Rigidbody, make it Kinematic and use MovePosition on it. Also, only do that in FixedUpdate because physics doesn’t run per-frame by default, it runs during the FixedUpdate cycle.