Compare rules_oci with rules_img and rules_docker
mainvs rules_img
rules_oci is designed for maintainability using standard container tools and DefaultInfo (passing files/directories between rules). This makes it simpler but less optimized for remote caching/execution compared to rules_img, as more bytes may be sent over the network. Use rules_img if you require high-performance remote execution.
vs rules_docker
rules_oci is not a complete replacement for rules_docker. While it covers most use cases, it lacks certain features like container_run_and* rules. If you are migrating from rules_docker, refer to the Aspect migration guide.