From 7f2bda2998a1eaabcb9208c06cf94ee6e2061f60 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 14 Mar 2023 21:41:09 +0100 Subject: [PATCH] Update Dockerfile --- sponsorblockcast/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sponsorblockcast/Dockerfile b/sponsorblockcast/Dockerfile index f01a8c78c..3c0ee5cd2 100644 --- a/sponsorblockcast/Dockerfile +++ b/sponsorblockcast/Dockerfile @@ -22,9 +22,10 @@ VOLUME [ "/data" ] # 2 Modify Image # ################## +# shellcheck ignore=DL4006 RUN apk --no-cache add jq bc grep curl \ && GC_URL=`curl https://api.github.com/repos/vishen/go-chromecast/releases/latest | jq -r '.assets[].browser_download_url' | grep ${TARGETOS}_${TARGETARCH}${TARGETVARIANT}` \ - && curl $GC_URL -o /root/go-chromecast.tgz \ + && curl "$GC_URL" -o /root/go-chromecast.tgz \ && tar xzf /root/go-chromecast.tgz -C /usr/bin \ && rm -rf /root/* \ && chmod +x /usr/bin/go-chromecast \