We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95edcc commit cff1ee6Copy full SHA for cff1ee6
.hadolint.yaml
@@ -1,7 +1,12 @@
1
ignored:
2
- - DL3007
3
- - DL3016
4
- - DL3028
5
- - SC2086
6
- - SC2039
7
- - DL3059
+ - DL3007 # Ignore warnings about using the latest tag as base image.
+ - DL3016 # Pin npm package versions
+ - DL3028 # Pin RubyGems versions
+ - SC2086 # Prevent globbing and word spliting by using double-quotes
+ - SC2039 # in POSIX sh, <something> is undefined
+ - DL3059 # Consider consolidating multiple RUNs
8
+ - DL3013 # Pin Python package versions in pip
9
+ - DL4001 # Use either only wget or curl but not both
10
+ - DL3004 # Don't use sudo, use gosu instead
11
+ - SC2016 # Absolute WORKDIR
12
+ - DL3003 # Use WORKDIR to switch dirs
0 commit comments