2019-10-19 23:36:56 +00:00
|
|
|
ARG DOTNET_VERSION=3.0
|
2019-09-02 19:13:08 +00:00
|
|
|
ARG FFMPEG_VERSION=latest
|
2018-12-10 06:41:43 +00:00
|
|
|
|
2019-09-12 22:24:09 +00:00
|
|
|
FROM node:alpine as web-builder
|
2019-10-19 23:32:19 +00:00
|
|
|
ARG JELLYFIN_WEB_VERSION=master
|
2019-09-12 22:24:09 +00: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
|
|
|
|
|
2019-04-03 05:21:28 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION} as builder
|
2018-12-10 06:41:43 +00:00
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
2019-02-16 06:37:55 +00:00
|
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
2019-09-28 03:02:18 +00:00
|
|
|
RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
|
2018-12-10 06:41:43 +00:00
|
|
|
|
2019-08-31 17:24:13 +00:00
|
|
|
FROM jellyfin/ffmpeg:${FFMPEG_VERSION} as ffmpeg
|
2019-10-20 12:37:01 +00:00
|
|
|
FROM debian:stretch-slim
|
2019-10-05 20:12:11 +00:00
|
|
|
|
2019-10-20 00:00:54 +00:00
|
|
|
COPY --from=ffmpeg /opt/ffmpeg /opt/ffmpeg
|
2019-10-05 20:12:11 +00:00
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
|
|
|
COPY --from=web-builder /dist /jellyfin/jellyfin-web
|
2019-10-05 22:38:55 +00:00
|
|
|
# Install dependencies:
|
|
|
|
# libfontconfig1: needed for Skia
|
2019-10-20 00:00:54 +00:00
|
|
|
# libgomp1: needed for ffmpeg
|
|
|
|
# libva-drm2: needed for ffmpeg
|
2019-10-05 22:38:55 +00:00
|
|
|
# mesa-va-drivers: needed for VAAPI
|
2019-01-12 02:04:36 +00:00
|
|
|
RUN apt-get update \
|
2019-01-17 23:59:47 +00:00
|
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y \
|
2019-10-20 00:00:54 +00:00
|
|
|
libfontconfig1 libgomp1 libva-drm2 mesa-va-drivers \
|
2019-01-17 23:59:47 +00:00
|
|
|
&& apt-get clean autoclean \
|
|
|
|
&& apt-get autoremove \
|
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 \
|
|
|
|
&& ln -s /opt/ffmpeg/bin/ffmpeg /usr/local/bin \
|
|
|
|
&& ln -s /opt/ffmpeg/bin/ffprobe /usr/local/bin
|
2019-03-01 05:17:46 +00:00
|
|
|
|
2019-10-20 12:37:01 +00:00
|
|
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
|
|
|
|
2019-01-25 18:26:55 +00:00
|
|
|
EXPOSE 8096
|
2019-02-16 20:25:44 +00:00
|
|
|
VOLUME /cache /config /media
|
2019-10-20 12:37:01 +00:00
|
|
|
ENTRYPOINT ./jellyfin/jellyfin \
|
2019-02-28 01:56:50 +00:00
|
|
|
--datadir /config \
|
|
|
|
--cachedir /cache \
|
2019-03-12 22:09:18 +00:00
|
|
|
--ffmpeg /usr/local/bin/ffmpeg
|