jellyfin/Dockerfile

51 lines
1.8 KiB
Docker
Raw Normal View History

2019-12-06 21:28:47 +01:00
ARG DOTNET_VERSION=3.1
2019-09-02 21:13:08 +02:00
ARG FFMPEG_VERSION=latest
2018-12-10 07:41:43 +01:00
2019-09-13 00:24:09 +02:00
FROM node:alpine as web-builder
2019-10-20 01:32:19 +02:00
ARG JELLYFIN_WEB_VERSION=master
2019-09-13 00:24:09 +02:00
RUN apk add curl \
&& curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
&& cd jellyfin-web-* \
&& yarn install \
&& yarn build \
&& mv dist /dist
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder
2018-12-10 07:41:43 +01:00
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:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
2018-12-10 07:41:43 +01:00
FROM jellyfin/ffmpeg:${FFMPEG_VERSION} as ffmpeg
FROM debian:buster-slim
2019-10-20 02:00:54 +02:00
COPY --from=ffmpeg /opt/ffmpeg /opt/ffmpeg
COPY --from=builder /jellyfin /jellyfin
COPY --from=web-builder /dist /jellyfin/jellyfin-web
2019-10-06 00:38:55 +02:00
# Install dependencies:
# libfontconfig1: needed for Skia
2019-10-20 02:00:54 +02:00
# libgomp1: needed for ffmpeg
# libva-drm2: needed for ffmpeg
2019-10-06 00:38:55 +02:00
# mesa-va-drivers: needed for VAAPI
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \
libfontconfig1 libgomp1 libva-drm2 mesa-va-drivers openssl \
&& apt-get clean autoclean \
&& apt-get autoremove \
2019-03-15 14:30:15 +01:00
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /cache /config /media \
2019-10-20 02:00:54 +02:00
&& chmod 777 /cache /config /media \
&& ln -s /opt/ffmpeg/bin/ffmpeg /usr/local/bin \
&& ln -s /opt/ffmpeg/bin/ffprobe /usr/local/bin
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
EXPOSE 8096
VOLUME /cache /config /media
ENTRYPOINT ["./jellyfin/jellyfin", \
"--datadir", "/config", \
"--cachedir", "/cache", \
"--ffmpeg", "/usr/local/bin/ffmpeg"]