From 08c1113afc4227e8dd84d45fa767832cff62ce53 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 8 Oct 2020 09:11:26 -0500 Subject: [PATCH] fix it --- .github/linters/.hadolint.yml | 2 ++ Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/linters/.hadolint.yml b/.github/linters/.hadolint.yml index 4ae5ed33..a53249c7 100644 --- a/.github/linters/.hadolint.yml +++ b/.github/linters/.hadolint.yml @@ -6,3 +6,5 @@ ignored: - DL4001 # Ignore wget and curl in same file - DL4006 # ignore pipefail as we dont want to add layers - DL3018 # We do pin version in pipfile.lock + - DL3003 # Ignore workdir so we dont add layers + - SC2016 # ignore as its intepreted later diff --git a/Dockerfile b/Dockerfile index 089580af..5e0b945e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -273,7 +273,7 @@ RUN CHECKSTYLE_LATEST=$(curl -s https://api.github.com/repos/checkstyle/checksty | grep browser_download_url \ | grep ".jar" \ | cut -d '"' -f 4) \ - && curl --retry 5 --retry-delay 5 -sSL $CHECKSTYLE_LATEST \ + && curl --retry 5 --retry-delay 5 -sSL "$CHECKSTYLE_LATEST" \ --output /usr/bin/checkstyle ####################