Base Image - CI/CD用語集の定義
Base image とは、Dockerfile が上に構築する起点となる image で、最初の FROM 命令で指定され(例: FROM node:20-slim)、OS レイヤーと初期のツールを提供します。
Base image とは、Dockerfile が上に構築する起点となる image で、最初の FROM 命令で指定され(例: FROM node:20-slim)、OS レイヤーと初期のツールを提供します。
Base image とは、Dockerfile が上に構築する起点となる image で、最初の FROM 命令で指定され(例: FROM node:20-slim)、OS レイヤーと初期のツールを提供します。
選び方
より小さい base image(slim、alpine、distroless)は、プリインストールされたツールが少ない代わりに、CI での build 時間、pull 時間、攻撃対象領域を削減します。
関連ガイド
Container Image - CI/CD Glossary DefinitionContainer Image: A container image is a read-only, layered package that bundles an application with its runti…
Distroless Image - CI/CD Glossary DefinitionDistroless Image: A distroless image contains only the application and its runtime dependencies, with no shel…
Scratch Image - CI/CD Glossary DefinitionScratch Image: The scratch image is an empty base image (`FROM scratch`) containing nothing at all. It is use…
Multi-Stage Dockerfile - CI/CD Glossary DefinitionMulti-Stage Dockerfile: A multi-stage Dockerfile uses several `FROM` stages so build tooling stays in an earl…