Layer Caching - CI/CD用語集の定義
Layer caching は、入力が変わっていないイメージ layer を再利用し、最初に変更された命令以降だけを再 build します。Dockerfile を cache に優しい順序にすることが高速な build の鍵です。
関連ガイド
BuildKit - CI/CD Glossary DefinitionBuildKit is Docker’s modern build engine, adding parallel stage execution, efficient layer caching, and build…
Build Cache - CI/CD Glossary DefinitionA build cache stores intermediate compilation outputs keyed by their inputs, so unchanged work is restored in…
Pull-Through Cache - CI/CD Glossary DefinitionA pull-through cache fetches an image from upstream on the first request, stores it, and serves later request…