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 ****" && \