Base Image - CI/CD用語集の定義
base imageはDockerfileの最初のFROMで指定されるイメージで、レイヤーが構築の土台とするOSとruntimeを提供します。小さく信頼できるbaseはサイズとリスクを減らします。
関連ガイド
Dockerfile - CI/CD Glossary DefinitionA Dockerfile is the text recipe of instructions - FROM, RUN, COPY, CMD - that Docker executes to build a cont…
Multi-Stage Build - CI/CD Glossary DefinitionA multi-stage build uses several FROM stages in one Dockerfile so heavy build tools stay out of the final ima…