fix(docker): Ignore local build and lint cache (#1994)

These should not be replicated to docker contexts as they are local to
the build host.  In addition, the golangci-lint currently doesn't assume
the host user nor add other group read permissions when writing files,
so this causes permission errors when other docker processes attempt to
copy the files.
This commit is contained in:
Nick DeLuca 2024-08-07 11:20:17 -07:00 committed by GitHub
parent 3c4d91a443
commit a4583be44b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,5 +11,10 @@ docs/
networks/ networks/
scratch/ scratch/
# Ignore build cache directories to avoid
# errors when addings these to docker images
build/.cache
build/.golangci-lint
go.work go.work
go.work.sum go.work.sum