2020-02-14 01:03:40 +00:00
|
|
|
# DESIGNED FOR BUILDING ON AMD64 ONLY
|
|
|
|
#####################################
|
|
|
|
# Requires binfm_misc registration
|
|
|
|
# https://github.com/multiarch/qemu-user-static#binfmt_misc-register
|
2020-11-10 17:03:21 +00:00
|
|
|
ARG DOTNET_VERSION=5.0
|
2019-01-22 03:47:51 +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
|
|
|
|
|
|
|
|
|
2020-11-10 17:03:21 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION} as builder
|
2019-01-22 03:47:51 +00:00
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
2019-02-16 06:37:55 +00:00
|
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
|
|
# Discard objs - may cause failures if exists
|
|
|
|
RUN find . -type d -name obj | xargs -r rm -r
|
|
|
|
# Build
|
2020-09-04 13:04:06 +00:00
|
|
|
RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-arm64 "-p:DebugSymbols=false;DebugType=none"
|
2019-01-22 03:47:51 +00:00
|
|
|
|
2020-02-14 01:03:40 +00:00
|
|
|
FROM multiarch/qemu-user-static:x86_64-aarch64 as qemu
|
|
|
|
FROM arm64v8/debian:buster-slim
|
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-02-14 01:03:40 +00:00
|
|
|
COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin
|
2020-03-20 10:36:21 +00:00
|
|
|
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \
|
2020-03-05 14:41:14 +00:00
|
|
|
ffmpeg \
|
|
|
|
libssl-dev \
|
|
|
|
ca-certificates \
|
|
|
|
libfontconfig1 \
|
|
|
|
libfreetype6 \
|
|
|
|
libomxil-bellagio0 \
|
|
|
|
libomxil-bellagio-bin \
|
2020-03-29 14:05:22 +00:00
|
|
|
locales \
|
2020-03-05 14:41:14 +00:00
|
|
|
&& apt-get clean autoclean -y \
|
|
|
|
&& apt-get autoremove -y \
|
2019-03-15 13:37:11 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2019-02-16 20:25:44 +00:00
|
|
|
&& mkdir -p /cache /config /media \
|
2020-03-29 14:05:22 +00:00
|
|
|
&& 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-gen
|
|
|
|
|
2019-01-22 03:47:51 +00:00
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
2019-09-24 14:22:26 +00:00
|
|
|
COPY --from=web-builder /dist /jellyfin/jellyfin-web
|
2019-03-01 05:17:46 +00:00
|
|
|
|
2019-10-20 12:37:01 +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
|
|
|
|
2019-01-22 03:47:51 +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", \
|
|
|
|
"--ffmpeg", "/usr/bin/ffmpeg"]
|