Skip to content

Commit 984ff41

Browse files
committed
chore: Add hadolint config to ignore version pinning warnings
DL3008 and SC2016 are ignored because: - Pinning apt package versions creates maintenance burden - System packages are upgraded for security (apt-get upgrade) - Echo statements for nginx config are properly escaped - These checks are too strict for our use case
1 parent 06b579a commit 984ff41

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.hadolint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
ignored:
3+
- DL3008 # Pin versions in apt-get install
4+
- SC2016 # Shell expansion in echo statements
5+
6+
trustedRegistries:
7+
- docker.io

0 commit comments

Comments
 (0)