diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,8 @@ FROM ghcr.io/linuxserver/baseimage-ubuntu:noble +ARG TARGETARCH + # set version label ARG BUILD_DATE ARG VERSION @@ -28,7 +30,7 @@ RUN \ NZBHYDRA2_VER=${NZBHYDRA2_RELEASE#v} && \ curl -o \ /tmp/nzbhydra2.zip -L \ - "https://github.com/theotherp/nzbhydra2/releases/download/v${NZBHYDRA2_VER}/nzbhydra2-${NZBHYDRA2_VER}-amd64-linux.zip" && \ + "https://github.com/theotherp/nzbhydra2/releases/download/v${NZBHYDRA2_VER}/nzbhydra2-${NZBHYDRA2_VER}-${TARGETARCH}-linux.zip" && \ mkdir -p /app/nzbhydra2 && \ unzip /tmp/nzbhydra2.zip -d /app/nzbhydra2 && \ chmod +x /app/nzbhydra2/nzbhydra2wrapperPy3.py && \ |