| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | ARG DOTNET_VERSION=5.0FROM node:lts-alpine as web-builderARG JELLYFIN_WEB_VERSION=masterRUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python3 \ && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ && cd jellyfin-web-* \ && npm ci --no-audit --unsafe-perm \ && mv dist /distFROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} as builderWORKDIR /repoCOPY . .ENV DOTNET_CLI_TELEMETRY_OPTOUT=1# because of changes in docker and systemd we need to not build in parallel at the moment# see https://success.docker.com/article/how-to-reserve-resource-temporarily-unavailable-errors-due-to-tasksmax-settingRUN dotnet publish Jellyfin.Server --disable-parallel --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:DebugSymbols=false;DebugType=none"FROM debian:buster-slim# https://askubuntu.com/questions/972516/debian-frontend-environment-variableARG DEBIAN_FRONTEND="noninteractive"# http://stackoverflow.com/questions/48162574/ddg#49462622ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn# https://github.com/NVIDIA/nvidia-docker/wiki/Installation-(Native-GPU-Support)ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"COPY --from=builder /jellyfin /jellyfinCOPY --from=web-builder /dist /jellyfin/jellyfin-web# https://github.com/intel/compute-runtime/releasesARG GMMLIB_VERSION=20.3.2ARG IGC_VERSION=1.0.5435ARG NEO_VERSION=20.46.18421ARG LEVEL_ZERO_VERSION=1.0.18421# Install dependencies:# mesa-va-drivers: needed for AMD VAAPI. Mesa >= 20.1 is required for HEVC transcoding.RUN apt-get update \ && apt-get install --no-install-recommends --no-install-suggests -y ca-certificates gnupg wget apt-transport-https \ && wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | apt-key add - \ && echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release ) $( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release ) main" | tee /etc/apt/sources.list.d/jellyfin.list \ && apt-get update \ && apt-get install --no-install-recommends --no-install-suggests -y \   mesa-va-drivers \   jellyfin-ffmpeg \   openssl \   locales \# Intel VAAPI Tone mapping dependencies:# Prefer NEO to Beignet since the latter one doesn't support Comet Lake or newer for now.# Do not use the intel-opencl-icd package from repo since they will not build with RELEASE_WITH_REGKEYS enabled. && mkdir intel-compute-runtime \ && cd intel-compute-runtime \ && wget https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-gmmlib_${GMMLIB_VERSION}_amd64.deb \ && wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-${IGC_VERSION}/intel-igc-core_${IGC_VERSION}_amd64.deb \ && wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-${IGC_VERSION}/intel-igc-opencl_${IGC_VERSION}_amd64.deb \ && wget https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-opencl_${NEO_VERSION}_amd64.deb \ && wget https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-ocloc_${NEO_VERSION}_amd64.deb \ && wget https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-level-zero-gpu_${LEVEL_ZERO_VERSION}_amd64.deb \ && dpkg -i *.deb \ && cd .. \ && rm -rf intel-compute-runtime \ && apt-get remove gnupg wget apt-transport-https -y \ && apt-get clean autoclean -y \ && apt-get autoremove -y \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /cache /config /media \ && chmod 777 /cache /config /media \ && sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-genENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1ENV LC_ALL en_US.UTF-8ENV LANG en_US.UTF-8ENV LANGUAGE en_US:enEXPOSE 8096VOLUME /cache /config /mediaENTRYPOINT ["./jellyfin/jellyfin", \    "--datadir", "/config", \    "--cachedir", "/cache", \    "--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"]
 |