2021-09-06 15:51:08 +00:00
|
|
|
# DESIGNED FOR BUILDING ON AMD64 ONLY
|
|
|
|
#####################################
|
|
|
|
# Requires binfm_misc registration
|
|
|
|
# https://github.com/multiarch/qemu-user-static#binfmt_misc-register
|
2021-09-25 12:21:48 +00:00
|
|
|
ARG DOTNET_VERSION=6.0
|
2018-12-10 06:41:43 +00:00
|
|
|
|
2021-05-05 04:58:12 +00:00
|
|
|
FROM node:lts-alpine as web-builder
|
2019-10-19 23:32:19 +00:00
|
|
|
ARG JELLYFIN_WEB_VERSION=master
|
2021-05-05 04:58:12 +00:00
|
|
|
RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python3 \
|
2019-09-12 22:24:09 +00:00
|
|
|
&& curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
|
|
|
&& cd jellyfin-web-* \
|
2021-05-05 04:58:12 +00:00
|
|
|
&& npm ci --no-audit --unsafe-perm \
|
2019-09-12 22:24:09 +00:00
|
|
|
&& mv dist /dist
|
|
|
|
|
2021-09-20 12:30:47 +00:00
|
|
|
FROM debian:stable-slim as app
|
2019-10-05 20:12:11 +00:00
|
|
|
|
2020-03-05 14:41:14 +00:00
|
|
|
# https://askubuntu.com/questions/972516/debian-frontend-environment-variable
|
|
|
|
ARG DEBIAN_FRONTEND="noninteractive"
|
|
|
|
# http://stackoverflow.com/questions/48162574/ddg#49462622
|
|
|
|
ARG 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"
|
|
|
|
|
2020-11-27 12:12:47 +00:00
|
|
|
# https://github.com/intel/compute-runtime/releases
|
2021-09-06 10:55:00 +00:00
|
|
|
ARG GMMLIB_VERSION=21.2.1
|
|
|
|
ARG IGC_VERSION=1.0.8517
|
|
|
|
ARG NEO_VERSION=21.35.20826
|
|
|
|
ARG LEVEL_ZERO_VERSION=1.2.20826
|
2020-11-27 12:12:47 +00:00
|
|
|
|
2019-10-05 22:38:55 +00:00
|
|
|
# Install dependencies:
|
2020-11-27 12:12:47 +00:00
|
|
|
# mesa-va-drivers: needed for AMD VAAPI. Mesa >= 20.1 is required for HEVC transcoding.
|
2019-01-12 02:04:36 +00:00
|
|
|
RUN apt-get update \
|
2020-04-09 07:43:47 +00:00
|
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y ca-certificates gnupg wget apt-transport-https \
|
2020-04-09 09:37:57 +00:00
|
|
|
&& 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 \
|
2020-04-09 07:43:47 +00:00
|
|
|
&& apt-get update \
|
2019-01-17 23:59:47 +00:00
|
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y \
|
2020-03-05 14:41:14 +00:00
|
|
|
mesa-va-drivers \
|
2020-04-09 07:43:47 +00:00
|
|
|
jellyfin-ffmpeg \
|
2020-03-05 14:41:14 +00:00
|
|
|
openssl \
|
2020-03-29 14:05:22 +00:00
|
|
|
locales \
|
2020-11-27 12:12:47 +00:00
|
|
|
# Intel VAAPI Tone mapping dependencies:
|
|
|
|
# Prefer NEO to Beignet since the latter one doesn't support Comet Lake or newer for now.
|
2020-11-28 01:03:45 +00:00
|
|
|
# Do not use the intel-opencl-icd package from repo since they will not build with RELEASE_WITH_REGKEYS enabled.
|
2020-11-27 12:12:47 +00:00
|
|
|
&& 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 \
|
2020-04-09 07:43:47 +00:00
|
|
|
&& apt-get remove gnupg wget apt-transport-https -y \
|
|
|
|
&& apt-get clean autoclean -y \
|
|
|
|
&& apt-get autoremove -y \
|
2019-03-15 13:30:15 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2019-02-16 20:25:44 +00:00
|
|
|
&& mkdir -p /cache /config /media \
|
2019-10-20 00:00:54 +00:00
|
|
|
&& chmod 777 /cache /config /media \
|
2020-03-29 14:05:22 +00:00
|
|
|
&& sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
|
2019-03-01 05:17:46 +00:00
|
|
|
|
2021-09-29 01:09:37 +00:00
|
|
|
# ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
2020-03-29 14:05:22 +00:00
|
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
ENV LANG en_US.UTF-8
|
|
|
|
ENV LANGUAGE en_US:en
|
2019-10-20 12:37:01 +00:00
|
|
|
|
2021-08-02 20:15:51 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} as builder
|
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
|
|
|
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-setting
|
|
|
|
RUN dotnet publish Jellyfin.Server --disable-parallel --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:DebugSymbols=false;DebugType=none"
|
|
|
|
|
|
|
|
FROM app
|
|
|
|
|
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
|
|
|
COPY --from=web-builder /dist /jellyfin/jellyfin-web
|
|
|
|
|
2019-01-25 18:26:55 +00:00
|
|
|
EXPOSE 8096
|
2019-02-16 20:25:44 +00:00
|
|
|
VOLUME /cache /config /media
|
2019-10-27 19:28:56 +00:00
|
|
|
ENTRYPOINT ["./jellyfin/jellyfin", \
|
|
|
|
"--datadir", "/config", \
|
|
|
|
"--cachedir", "/cache", \
|
2020-04-09 07:43:47 +00:00
|
|
|
"--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"]
|