Dockerfile Best Practices: Layers and Caching
Docker builds images incrementally using a layered filesystem. Each instruction in your Dockerfile—RUN, COPY, ADD, and others—creates a new read-only layer. These layers stack on top of each other…
Read more →