What is an image?
https://docs.docker.com/get-started/docker-concepts/the-basics/what-is-an-image/
コンテナイメージは全てのファイル、バイナリ、ライブラリ、そしてコンテナを起動する設定を含んだパッケージである。
A container image is a standardized package that includes all of the files, binaries, libraries, and configurations to run a container.
There are two important principles of images:
イメージがimmutableであること。イメージが作成されれば修正ができない。新たに作り直すか、トップへ変更を加えるか
イメージはレイヤー構造である。
Images are immutable. Once an image is created, it can't be modified. You can only make a new image or add changes on top of it.
Container images are composed of layers. Each layer represents a set of file system changes that add, remove, or modify files.