From 2a8c4712a4b2f8ce7d0bbef93c0d3aaeb7c5d93e Mon Sep 17 00:00:00 2001 From: thespad Date: Sun, 5 Jul 2026 18:36:12 +0000 Subject: [PATCH 1/2] Rebase to 3.24 --- Dockerfile | 10 +++++----- Dockerfile.aarch64 | 10 +++++----- README.md | 1 + readme-vars.yml | 1 + 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9dc36b6..6694990 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM ghcr.io/linuxserver/unrar:latest AS unrar -FROM ghcr.io/by275/libtorrent:2-alpine3.23 AS libtorrent +FROM ghcr.io/by275/libtorrent:2-alpine3.24 AS libtorrent -FROM ghcr.io/linuxserver/baseimage-alpine:3.23 +FROM ghcr.io/linuxserver/baseimage-alpine:3.24 # set version label ARG BUILD_DATE @@ -36,9 +36,9 @@ RUN \ pip install -U --no-cache-dir \ pip \ 'setuptools==81' && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.23/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ rencode==1.0.6 && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.23/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ deluge[all]==${DELUGE_VERSION} \ pygeoip && \ echo "**** grab GeoIP database ****" && \ @@ -55,7 +55,7 @@ RUN \ COPY --from=libtorrent /libtorrent-build/usr/lib/libtorrent-rasterbar.* /usr/lib/ - COPY --from=libtorrent /libtorrent-build/usr/lib/python3.12 /lsiopy/lib/python3.12 + COPY --from=libtorrent /libtorrent-build/usr/lib/python3.14 /lsiopy/lib/python3.14 # add local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 5713f13..98487e7 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -2,9 +2,9 @@ FROM ghcr.io/linuxserver/unrar:arm64v8-latest AS unrar -FROM ghcr.io/by275/libtorrent:2-alpine3.23-arm64 AS libtorrent +FROM ghcr.io/by275/libtorrent:2-alpine3.24-arm64 AS libtorrent -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.24 # set version label ARG BUILD_DATE @@ -36,9 +36,9 @@ RUN \ pip install -U --no-cache-dir \ pip \ 'setuptools==81' && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.23/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ rencode==1.0.6 && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.23/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.24/ \ deluge[all]==${DELUGE_VERSION} \ pygeoip && \ echo "**** grab GeoIP database ****" && \ @@ -55,7 +55,7 @@ RUN \ COPY --from=libtorrent /libtorrent-build/usr/lib/libtorrent-rasterbar.* /usr/lib/ - COPY --from=libtorrent /libtorrent-build/usr/lib/python3.12 /lsiopy/lib/python3.12 + COPY --from=libtorrent /libtorrent-build/usr/lib/python3.14 /lsiopy/lib/python3.14 # add local files COPY root/ / diff --git a/README.md b/README.md index 3efcb9f..348a289 100644 --- a/README.md +++ b/README.md @@ -323,6 +323,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.07.26:** - Rebase to Alpine 3.24. * **02.04.26:** - Install from pypi due to Alpine geoip package deprecation. * **29.12.25:** - Fix some issues with GeoIP updates. * **23.08.25:** - Update GeoIP provider, add weekly cronjob to update. diff --git a/readme-vars.yml b/readme-vars.yml index 7955f3f..e861225 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -101,6 +101,7 @@ init_diagram: | "deluge:latest" <- Base Images # changelog changelogs: + - {date: "05.07.26:", desc: "Rebase to Alpine 3.24."} - {date: "02.04.26:", desc: "Install from pypi due to Alpine geoip package deprecation."} - {date: "29.12.25:", desc: "Fix some issues with GeoIP updates."} - {date: "23.08.25:", desc: "Update GeoIP provider, add weekly cronjob to update."} From 21152de794616f5add258e703c7db41d8da20f00 Mon Sep 17 00:00:00 2001 From: thespad Date: Sun, 5 Jul 2026 18:59:23 +0000 Subject: [PATCH 2/2] Fix libtorrent tags --- Dockerfile.aarch64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 98487e7..24691d3 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -2,7 +2,7 @@ FROM ghcr.io/linuxserver/unrar:arm64v8-latest AS unrar -FROM ghcr.io/by275/libtorrent:2-alpine3.24-arm64 AS libtorrent +FROM ghcr.io/by275/libtorrent:2-alpine3.24 AS libtorrent FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.24