jellyfin/Dockerfile

27 lines
753 B
Docker
Raw Normal View History

2018-12-10 07:41:43 +01:00
ARG DOTNET_VERSION=2
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
COPY . .
2018-12-12 05:48:41 +01:00
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
2019-01-13 21:30:30 +01:00
&& dotnet publish \
--configuration release \
2019-01-13 21:30:54 +01:00
--output /jellyfin \
Jellyfin.Server
2018-12-10 07:41:43 +01:00
2019-02-08 06:19:31 +01:00
FROM jrottenberg/ffmpeg:4.0-vaapi as ffmpeg
2018-12-10 07:41:43 +01:00
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
# libfontconfig1 is required for Skia
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \
libfontconfig1 \
&& apt-get clean autoclean \
&& apt-get autoremove \
&& rm -rf /var/lib/{apt,dpkg,cache,log}
COPY --from=ffmpeg / /
COPY --from=builder /jellyfin /jellyfin
EXPOSE 8096
VOLUME /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll --datadir /config