From 1941891dbfe3d470ac93a41927305258ceb41104 Mon Sep 17 00:00:00 2001 From: thespad Date: Mon, 20 Oct 2025 10:47:56 +0100 Subject: [PATCH] No install recommends --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5ecdb9..c8596e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,12 +25,12 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ at \ libjemalloc2 \ mesa-va-drivers \ xmlstarlet && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8a4f43f..82975ce 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,14 +25,14 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ at \ libjemalloc2 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \