From 63a53050cbf97bc877290b5e704eab93b24da4f5 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 14 Mar 2023 21:35:20 +0100 Subject: [PATCH] wget to curl --- sponsorblockcast/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sponsorblockcast/Dockerfile b/sponsorblockcast/Dockerfile index 29e62f3a5..c5a1d6803 100644 --- a/sponsorblockcast/Dockerfile +++ b/sponsorblockcast/Dockerfile @@ -23,8 +23,8 @@ VOLUME [ "/data" ] ################## RUN apk --no-cache add jq bc grep curl \ - && GC_URL=`wget https://api.github.com/repos/vishen/go-chromecast/releases/latest -O - | jq -r '.assets[].browser_download_url' | grep ${TARGETOS}_${TARGETARCH}${TARGETVARIANT}` \ - && wget $GC_URL -O /root/go-chromecast.tgz \ + && 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 \ && tar xzf /root/go-chromecast.tgz -C /usr/bin \ && rm -rf /root/* \ && chmod +x /usr/bin/go-chromecast \