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