From 63e4c74f2eb8611f0620e3673a5651e3b1cd8de2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 22 Jan 2022 22:12:09 +0100 Subject: [PATCH] Update Dockerfile --- joal/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/joal/Dockerfile b/joal/Dockerfile index 2e7326e0b..db4cf0929 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -24,6 +24,8 @@ FROM anthonyraymond/joal:$BUILD_UPSTREAM ################## # Install Joal +# spellcheck disable=SC2015 +# hadolint ignore=SC2015,DL4006 RUN \ if ! command -v curl >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends curl || apk add --no-cache curl); fi \ && curl -s -S -J -L -o /tmp/joal.tar.gz $(curl -s https://api.github.com/repos/anthonyraymond/joal/releases/latest | grep -o "http.*joal.tar.gz") >/dev/null \