Do not ignore .dockerignore
TL;DR
Tip: Consider to define and use
.dockerignore
file for every Docker image you are building. It can help you to reduce Docker image size, speedupdocker build
and avoid unintended secret exposure.
Docker build context
The docker build
command is used to build a new Docker image. There is one argument you can pass to the build
command build context.
So, what is the Docker build context?