Skip to content

Commit 1941891

Browse files
committed
No install recommends
1 parent 2cd6f51 commit 1941891

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ RUN \
2525
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}'); \
2626
fi && \
2727
apt-get update && \
28-
apt-get install -y \
28+
apt-get install -y --no-install-recommends \
2929
at \
3030
libjemalloc2 \
3131
mesa-va-drivers \
3232
xmlstarlet && \
33-
apt-get install -y \
33+
apt-get install -y --no-install-recommends \
3434
jellyfin=${JELLYFIN_RELEASE} && \
3535
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3636
echo "**** cleanup ****" && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ RUN \
2525
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}'); \
2626
fi && \
2727
apt-get update && \
28-
apt-get install -y \
28+
apt-get install -y --no-install-recommends \
2929
at \
3030
libjemalloc2 \
3131
libomxil-bellagio0 \
3232
libomxil-bellagio-bin \
3333
libraspberrypi0 \
3434
xmlstarlet && \
35-
apt-get install -y \
35+
apt-get install -y --no-install-recommends \
3636
jellyfin=${JELLYFIN_RELEASE} && \
3737
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3838
echo "**** cleanup ****" && \

0 commit comments

Comments
 (0)