Build Argument - CI/CD Glossary Definition
A build argument (ARG / --build-arg) injects a value into a Docker build that is available to build instructions but, unlike ENV, does not persist into the final image - handy for versions and feature toggles.
Related guides
Runtime vs Build-Time - CI/CD Glossary DefinitionRuntime vs build-time distinguishes work done while compiling or packaging from work done when the program ru…
Environment Variable Scoping - CI/CD Glossary DefinitionEnvironment variable scoping controls where a value is visible - workflow, job, or step - so secrets and conf…
Minification - CI/CD Glossary DefinitionMinification shrinks code by removing whitespace, comments, and long names without changing behavior, so the…