Description: OpenShift Build is a process for creating container images from source code. This process is fundamental in the modern development ecosystem, as it allows developers to package their applications and all their dependencies into containers, facilitating deployment and scalability. OpenShift, a container platform based on Kubernetes, provides integrated tools to manage the application lifecycle, and the build process is an essential part of this cycle. Through OpenShift Build, developers can define how a container image should be built using configuration files, enabling the implementation of the ‘Configuration as Code’ practice. This means that the build environment configuration can be versioned and managed in the same way as the source code, improving reproducibility and collaboration in development teams. Additionally, OpenShift Build supports multiple build strategies, such as building images from Dockerfiles or using S2I (Source-to-Image), providing flexibility to adapt to different workflows and development needs. In summary, OpenShift Build not only simplifies the process of creating container images but also integrates modern development practices that promote efficiency and quality in software delivery.