From 41cd38a43ce064b8c7aa7ec85cf614fa9833ff03 Mon Sep 17 00:00:00 2001 From: thespad Date: Wed, 17 Jul 2024 11:43:28 +0100 Subject: [PATCH] Fix static version in url --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5deb84c..98c7e8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ RUN \ fi && \ curl -o \ /tmp/qbt.tar.gz -L \ - "https://github.com/fedarovich/qbittorrent-cli/releases/download/v1.8.24199.1/qbt-linux-alpine-x64-net6-${QBT_CLI_VERSION#v}.tar.gz" && \ + "https://github.com/fedarovich/qbittorrent-cli/releases/download/${QBT_CLI_VERSION}/qbt-linux-alpine-x64-net6-${QBT_CLI_VERSION#v}.tar.gz" && \ tar xf \ /tmp/qbt.tar.gz -C \ /qbt && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 26cda4c..ae1f795 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -39,7 +39,7 @@ RUN \ fi && \ curl -o \ /tmp/qbt.tar.gz -L \ - "https://github.com/fedarovich/qbittorrent-cli/releases/download/v1.8.24199.1/qbt-linux-alpine-arm64-net6-${QBT_CLI_VERSION#v}.tar.gz" && \ + "https://github.com/fedarovich/qbittorrent-cli/releases/download/${QBT_CLI_VERSION}/qbt-linux-alpine-arm64-net6-${QBT_CLI_VERSION#v}.tar.gz" && \ tar xf \ /tmp/qbt.tar.gz -C \ /qbt && \