Scratch Image - CI/CD用語集の定義
Scratch image は、何も含まない空の base image(FROM scratch)です。OS レイヤーを必要としない静的リンクされたバイナリ向けに、最小の image を構築するために使われます。
Scratch image は、何も含まない空の base image(FROM scratch)です。OS レイヤーを必要としない静的リンクされたバイナリ向けに、最小の image を構築するために使われます。
Scratch image は、何も含まない空の base image(FROM scratch)です。OS レイヤーを必要としない静的リンクされたバイナリ向けに、最小の image を構築するために使われます。
典型的な用途
静的にコンパイルされた Go や Rust のバイナリは FROM scratch で配布されることが多く、わずか数メガバイトの image になります。
関連ガイド
Distroless Image - CI/CD Glossary DefinitionDistroless Image: A distroless image contains only the application and its runtime dependencies, with no shel…
Base Image - CI/CD Glossary DefinitionBase Image: A base image is the starting image a Dockerfile builds on top of, named in the first `FROM` instr…
Multi-Stage Dockerfile - CI/CD Glossary DefinitionMulti-Stage Dockerfile: A multi-stage Dockerfile uses several `FROM` stages so build tooling stays in an earl…
Container Image - CI/CD Glossary DefinitionContainer Image: A container image is a read-only, layered package that bundles an application with its runti…