jellyfin/Dockerfile

28 lines
812 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 . .
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
RUN dotnet publish \
2019-01-13 21:30:30 +01:00
--configuration release \
2019-01-13 21:30:54 +01:00
--output /jellyfin \
Jellyfin.Server
2018-12-10 07:41:43 +01:00
2019-02-20 18:11:50 +01:00
FROM jellyfin/ffmpeg 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} \
&& mkdir -p /cache /config /media \
&& chmod 777 /cache /config /media
COPY --from=ffmpeg / /
COPY --from=builder /jellyfin /jellyfin
EXPOSE 8096
VOLUME /cache /config /media
ENTRYPOINT dotnet /jellyfin/jellyfin.dll --datadir /config --cachedir /cache