No install recommends

This commit is contained in:
thespad
2025-10-20 10:47:56 +01:00
parent 2cd6f518c7
commit 1941891dbf
2 changed files with 4 additions and 4 deletions

View File

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

View File

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