diff options
author | Jeremy Lin <[email protected]> | 2023-01-22 01:21:52 -0800 |
---|---|---|
committer | Jeremy Lin <[email protected]> | 2023-01-24 13:11:13 -0800 |
commit | 686474f81505b0b7aae323669809dd86f6186427 (patch) | |
tree | 53f7e91cbfb647e0b50443baa78383c827d6f76e /.hadolint.yaml | |
parent | 2c6bd8c9dc67d3e0208e1873d8bf3fef6d8f9aa3 (diff) | |
download | vaultwarden-686474f81505b0b7aae323669809dd86f6186427.tar.gz vaultwarden-686474f81505b0b7aae323669809dd86f6186427.zip |
Disable Hadolint check for consecutive `RUN` instructions (DL3059)
This check doesn't seem to add enough value to justify the difficulties it
tends to create when generating `RUN` instructions from a template.
Diffstat (limited to '.hadolint.yaml')
-rw-r--r-- | .hadolint.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.hadolint.yaml b/.hadolint.yaml index f1c324b8..1c305f9d 100644 --- a/.hadolint.yaml +++ b/.hadolint.yaml @@ -3,5 +3,7 @@ ignored: - DL3008 # disable explicit version for apk install - DL3018 + # disable check for consecutive `RUN` instructions + - DL3059 trustedRegistries: - docker.io |