When building a Docker image, each line in the _dockerfile_ represents the building of a layer in the image layer stack, and when we run the `docker build […]
Similar to _.gitignore_ the .dockerignore is a file in which you can specify files/directories you want to exclude from your docker image at build time. A good use-case […]