Multi-Stage Build - CI/CD用語集の定義
multi-stage buildは1つのDockerfile内で複数のFROMステージを使い、必要な出力だけを最終ステージにコピーするため、buildツールがruntimeイメージに含まれることはありません。
関連ガイド
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…