diff --git a/Dockerfile b/Dockerfile index 0241826..ab5972b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ echo "**** install duplicati ****" && \ if [ -z ${DUPLICATI_RELEASE+x} ]; then \ DUPLICATI_RELEASE=$(curl -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" \ - | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ + | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ fi && \ duplicati_url=$(curl -s "https://api.github.com/repos/duplicati/duplicati/releases/tags/${DUPLICATI_RELEASE}" | jq -r '.assets[].browser_download_url' |grep 'linux-x64-gui.zip$') && \ curl -o \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3fdaff8..b674fea 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ RUN \ echo "**** install duplicati ****" && \ if [ -z ${DUPLICATI_RELEASE+x} ]; then \ DUPLICATI_RELEASE=$(curl -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" \ - | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ + | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ fi && \ duplicati_url=$(curl -s "https://api.github.com/repos/duplicati/duplicati/releases/tags/${DUPLICATI_RELEASE}" | jq -r '.assets[].browser_download_url' |grep 'linux-arm64-gui.zip$') && \ curl -o \