From e0630e1ed4f4c104beeabd7811d7d1434a82accc Mon Sep 17 00:00:00 2001 From: thespad Date: Mon, 6 Jan 2025 15:08:46 +0000 Subject: [PATCH] Rebase to 3.21 --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- README.md | 1 + readme-vars.yml | 3 +++ 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 70ecdb0..5ed09f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.20 +FROM ghcr.io/linuxserver/baseimage-alpine:3.21 # set version label ARG BUILD_DATE @@ -43,7 +43,7 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ -r requirements.txt && \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ -r requirements.txt && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ apk del --purge \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b45371e..81b0fb0 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 # set version label ARG BUILD_DATE @@ -43,7 +43,7 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ -r requirements.txt && \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ -r requirements.txt && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ apk del --purge \ diff --git a/README.md b/README.md index efeadaf..832b6f9 100644 --- a/README.md +++ b/README.md @@ -302,5 +302,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **06.01.25:** - Rebase to Alpine 3.21. * **24.06.24:** - Rebase to Alpine 3.20. * **22.04.24:** - Initial Release. diff --git a/readme-vars.yml b/readme-vars.yml index 565139a..cec8752 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -30,6 +30,8 @@ opt_param_env_vars: - {env_var: "KOMETA_RUN", env_value: "False", desc: "Set to `True` to run without the scheduler."} - {env_var: "KOMETA_TEST", env_value: "False", desc: "Set to `True` to run in debug mode with only collections that have `test: true`."} - {env_var: "KOMETA_NO_MISSING", env_value: "False", desc: "Set to `True` to run without any of the missing movie/show functions."} +readonly_supported: false +nonroot_supported: false # application setup block app_setup_block_enabled: true app_setup_block: | @@ -87,5 +89,6 @@ init_diagram: | "kometa:develop" <- Base Images # changelog changelogs: + - {date: "06.01.25:", desc: "Rebase to Alpine 3.21."} - {date: "24.06.24:", desc: "Rebase to Alpine 3.20."} - {date: "22.04.24:", desc: "Initial Release."}