From 2a1c637ed96adda503dee2ab09e80c277f602761 Mon Sep 17 00:00:00 2001 From: Oguz Ozturk Date: Mon, 19 Feb 2024 18:11:53 +0300 Subject: [PATCH] add hadolint dotfile to ignore some rules globally Signed-off-by: Oguz Ozturk --- .hadolint.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .hadolint.yaml diff --git a/.hadolint.yaml b/.hadolint.yaml new file mode 100644 index 00000000000..a0ae9f5b0a6 --- /dev/null +++ b/.hadolint.yaml @@ -0,0 +1,3 @@ +ignored: + - DL3008 # Pin versions in apt get install. Instead of `apt-get install ` use `apt-get install =` + - DL3013 # Pin versions in pip. Instead of `pip install `, use `pip install ==`