jellyfin/Dockerfile

26 lines
725 B
Docker
Raw Normal View History

2018-12-10 01:41:43 -05:00
ARG DOTNET_VERSION=2
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
COPY . .
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
RUN dotnet publish \
2019-01-13 15:30:30 -05:00
--configuration release \
2019-01-13 15:30:54 -05:00
--output /jellyfin \
Jellyfin.Server
2018-12-10 01:41:43 -05:00
2019-02-08 00:19:31 -05:00
FROM jrottenberg/ffmpeg:4.0-vaapi as ffmpeg
2018-12-10 01:41:43 -05: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