Base Image - CI/CD Glossary Definition
A base image is the image named in a Dockerfile’s first FROM, providing the OS and runtime your layers build on; smaller, trusted bases cut size and risk.
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…
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…