Build Argument - CI/CD用語集の定義
ビルド引数(ARG / --build-arg)は、Docker ビルドに値を注入するもので、ビルド命令からは利用できますが、ENV とは異なり最終イメージには残りません - バージョンや feature toggle に便利です。
関連ガイド
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…