diff --git a/Dockerfile b/Dockerfile index 89304fd..3ef8e3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -27,7 +29,6 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - i965-va-driver \ intel-media-va-driver-non-free \ ${JELLYFIN} \ libfontconfig1 \