2019-04-03 05:21:28 +00:00
|
|
|
ARG DOTNET_VERSION=2.2
|
2019-09-02 19:13:08 +00:00
|
|
|
ARG FFMPEG_VERSION=latest
|
2018-12-10 06:41:43 +00:00
|
|
|
|
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-02-24 10:17:39 +00:00
|
|
|
RUN bash -c "source deployment/common.build.sh && \
|
|
|
|
build_jellyfin Jellyfin.Server Release linux-x64 /jellyfin"
|
2018-12-10 06:41:43 +00:00
|
|
|
|
2019-08-31 17:24:13 +00:00
|
|
|
FROM jellyfin/ffmpeg:${FFMPEG_VERSION} as ffmpeg
|
2019-04-03 05:21:28 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/core/runtime:${DOTNET_VERSION}
|
2019-01-18 15:26:02 +00:00
|
|
|
# libfontconfig1 is required for Skia
|
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-01-18 15:26:02 +00:00
|
|
|
libfontconfig1 \
|
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 \
|
|
|
|
&& chmod 777 /cache /config /media
|
2019-01-27 02:16:43 +00:00
|
|
|
COPY --from=ffmpeg / /
|
2019-01-25 18:26:55 +00:00
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
2019-03-01 05:17:46 +00:00
|
|
|
|
2019-09-01 01:39:10 +00:00
|
|
|
ARG JELLYFIN_WEB_VERSION=v10.4.0
|
2019-07-31 20:58:36 +00:00
|
|
|
RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
2019-03-01 05:17:46 +00:00
|
|
|
&& rm -rf /jellyfin/jellyfin-web \
|
2019-08-07 03:57:39 +00:00
|
|
|
&& mv jellyfin-web-* /jellyfin/jellyfin-web
|
2019-03-01 05:17:46 +00:00
|
|
|
|
2019-01-25 18:26:55 +00:00
|
|
|
EXPOSE 8096
|
2019-02-16 20:25:44 +00:00
|
|
|
VOLUME /cache /config /media
|
2019-02-28 01:56:50 +00:00
|
|
|
ENTRYPOINT dotnet /jellyfin/jellyfin.dll \
|
|
|
|
--datadir /config \
|
|
|
|
--cachedir /cache \
|
2019-03-12 22:09:18 +00:00
|
|
|
--ffmpeg /usr/local/bin/ffmpeg
|