SCaLE 22x Conference talk: "Many Ways of Building Containers: From Manual to Transparently Built On-Demand Containers" - https://www.socallinuxexpo.org/scale/22x/presentations/many-ways-building-containers-manual-transparently-built-demand-containers
Ever wondered how container images are organized? Are you curious why some containers take forever to load and start while other containers start right away? Did you know that "docker build" is not the only way to build container images? Did you know that you can build containers without Docker? Do you want to learn how to build container images without any container tools?
You'll see what happens when you start a container and the container image is not available locally. Normally container images need to be fully loaded before the container can start its execution. We'll discover what can be done to start running containers before their images are fully loaded.
You'll also see how to create a container image manually using a text editor and the tar utility.
At the end we explore different container tools to build container images locally and in the cloud including the tools that let you build container images on demand when you execute the "docker run" command.