From 15bbb3fcec2d9fccb7b71f1194bf280f98fd4f78 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sat, 23 Dec 2023 18:10:11 -0600 Subject: [PATCH] Rebase to Alpine 3.19 Signed-off-by: Eric Nemchik --- Dockerfile | 6 +++--- Dockerfile.aarch64 | 6 +++--- readme-vars.yml | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 93c6237b..648e7fd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.18 +FROM ghcr.io/linuxserver/baseimage-alpine:3.19 # set version label ARG BUILD_DATE @@ -41,11 +41,11 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ cryptography \ pycryptodomex \ pyopenssl && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ -r requirements.txt && \ echo "**** Hard Coding versioning ****" && \ echo "${TAUTULLI_COMMIT}" > /app/tautulli/version.txt && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fbbd0614..bb545b1d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 # set version label ARG BUILD_DATE @@ -41,11 +41,11 @@ RUN \ pip install -U --no-cache-dir \ pip \ wheel && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ cryptography \ pycryptodomex \ pyopenssl && \ - pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \ + pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ -r requirements.txt && \ echo "**** Hard Coding versioning ****" && \ echo "${TAUTULLI_COMMIT}" > /app/tautulli/version.txt && \ diff --git a/readme-vars.yml b/readme-vars.yml index a93ad2b7..65a76340 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -28,7 +28,7 @@ param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "", desc: "Contains tautulli config and database." } + - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" } param_usage_include_ports: true param_ports: - { external_port: "8181", internal_port: "8181", port_desc: "WebUI" } @@ -51,6 +51,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.12.23:", desc: "Rebase to Alpine 3.19."} - { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." } - { date: "15.12.22:", desc: "Rebase develop branch to Alpine 3.17." } - { date: "04.10.22:", desc: "Rebase develop branch to Alpine 3.16, migrate to s6v3." }