From f00903c8114a648a45c3c7a4941cca5f5791b192 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 24 Aug 2024 22:55:25 -0400 Subject: [PATCH] fix: ignore DL3002 This allows us to keep the default user as root. Very unfortunately, we cannot remove the `USER` directive from the top-level, so here we are. --- .github/linters/.hadolint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/linters/.hadolint.yml b/.github/linters/.hadolint.yml index 1a5ae337a..42e6e8e1e 100644 --- a/.github/linters/.hadolint.yml +++ b/.github/linters/.hadolint.yml @@ -1,6 +1,7 @@ ignored: - - DL3048 + - DL3002 + - DL3003 - DL3005 - DL3008 - - DL3003 + - DL3048 - SC2035