mirror of
https://github.com/hadolint/hadolint.git
synced 2026-06-14 09:24:22 +00:00
Page:
DL1001
Pages
DL1001
DL3000
DL3001
DL3002
DL3003
DL3004
DL3005
DL3006
DL3007
DL3008
DL3009
DL3010
DL3011
DL3012
DL3013
DL3014
DL3015
DL3016
DL3017
DL3018
DL3019
DL3020
DL3021
DL3022
DL3023
DL3024
DL3025
DL3026
DL3027
DL3028
DL3029
DL3030
DL3031
DL3032
DL3033
DL3034
DL3035
DL3036
DL3037
DL3038
DL3039
DL3040
DL3041
DL3042
DL3043
DL3044
DL3045
DL3046
DL3047
DL3048
DL3049
DL3050
DL3051
DL3052
DL3053
DL3054
DL3055
DL3056
DL3057
DL3058
DL3059
DL3060
DL3061
DL3062
DL3063
DL4000
DL4001
DL4003
DL4004
DL4005
DL4006
Home
SC2046
SC2086
Template
No results
2
DL1001
Moritz Röhrich edited this page 2026-04-30 11:21:13 +02:00
Please refrain from using inline ignore pragmas # hadolint ignore=DLxxxx.
Problematic code:
# hadolint ignore=DL3006
FROM busybox
Correct code:
FROM busybox
Rationale:
Using inline ignore pragmas can hide legitimate issues and make it harder to maintain code quality standards across an entire organization. This rule can be used to enforce that no inline ignore pragma is used in a Dockerfile. Inline ignore pragmas open up the possiblity to create Dockerfiles which violate best practices and force Hadolint's checks to pass anyways. Should a user or organization not want to permit this, they can elevate the severity of this rule. In that case, all uses of inline ignore pragmas will automatically lead to a warning by Hadolint.
This rule is disabled by default. To enable configure Hadolint:
override:
warning:
- DL1001