From 16057cdef792daf2168b3bf23f9466e57d8abe52 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 14 May 2022 06:36:38 -0500 Subject: [PATCH] only use jellyfin-ffmpeg for amd64 --- docker/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1e8de13a2..b1b91a65f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -79,12 +79,13 @@ RUN apt-get -qq update \ && apt-get -qq install --no-install-recommends --no-install-suggests -y \ # coral drivers libedgetpu1-max python3-tflite-runtime python3-pycoral \ - jellyfin-ffmpeg \ && pip3 install -U /wheels/*.whl \ - # amd64 specific packages + # arch specific packages && if [ "${TARGETARCH}" = "amd64" ]; then \ - apt-get -qq install --no-install-recommends -y \ - mesa-va-drivers; \ + apt-get -qq install --no-install-recommends --no-install-suggests -y \ + mesa-va-drivers jellyfin-ffmpeg; else \ + apt-get -qq install --no-install-recommends --no-install-suggests -y \ + ffmpeg; \ fi \ && rm -rf /wheels \ && apt-get remove gnupg apt-transport-https -y \