Multi-Stage Build - CI/CD Glossary Definition
A multi-stage build uses multiple FROM stages in one Dockerfile, copying only the needed output into the final stage so build tools never ship in the runtime image.
Related guides
Dockerfile - CI/CD Glossary DefinitionA Dockerfile is the text recipe of instructions - FROM, RUN, COPY, CMD - that Docker executes to build a cont…
Base Image - CI/CD Glossary DefinitionA base image is the starting layer a Dockerfile builds on, set by the first FROM. Choosing a slim, trusted ba…
BuildKit - CI/CD Glossary DefinitionBuildKit is Docker’s modern build engine, adding parallel stage execution, efficient layer caching, and build…