Docker Image Layers
Hello to all the readers! Docker image is built in layers. Each instruction that is written in Dockerfile translates into an image layer by the builder. When the image is re-built, builder will re-use layers from earlier builds. If any layer is unchanged, then that layer is picked up from the build cache. However, if…