Excluding patterns
When a build takes place, the earthly
command sends any necessary local build contexts to the BuildKit daemon. In order to avoid sending unwanted files, you may exclude certain patterns by specifying an .earthlyignore
file.
The .earthlyignore
file must be present in the same directory as the target being built.
The syntax of the .earthlyignore
file is the same as the syntax of a .dockerignore
file. Behind the scenes, the matching is performed using the Go filepath.Match
function.
Patterns of files to exclude from the build context are specified as one pattern per line, with empty lines or lines starting with #
being ignored. Each pattern has the following syntax:
Note
Currently .earthlyignore
is only applied to local targets. If an .earthlyignore
file is specified within the context of a remote target, it will be silently ignored and exclusions would not take place.
Last updated