2018-12-09 23:41:43 -07:00
|
|
|
ARG DOTNET_VERSION=2
|
|
|
|
|
|
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
|
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
2018-12-11 21:48:41 -07:00
|
|
|
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
|
|
|
|
&& dotnet clean \
|
2018-12-15 22:40:07 -07:00
|
|
|
&& dotnet publish --configuration release --output /jellyfin
|
2018-12-09 23:41:43 -07:00
|
|
|
|
|
|
|
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
|
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
|
|
|
EXPOSE 8096
|
2019-01-04 13:04:58 -07:00
|
|
|
|
2018-12-09 23:41:43 -07:00
|
|
|
VOLUME /config /media
|
2019-01-04 13:04:58 -07:00
|
|
|
|
2019-01-04 17:41:23 -07:00
|
|
|
ARG FFMPEG_URL=https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.0.3-64bit-static.tar.xz
|
2019-01-04 17:28:40 -07:00
|
|
|
RUN apt update \
|
|
|
|
&& apt install -y xz-utils \
|
|
|
|
&& curl ${FFMPEG_URL} | tar Jxf - -C /usr/bin --wildcards --strip-components=1 ffmpeg*/ffmpeg ffmpeg*/ffprobe \
|
|
|
|
&& apt remove -y xz-utils
|
2019-01-04 13:04:58 -07:00
|
|
|
|
2018-12-18 18:08:34 -07:00
|
|
|
ENTRYPOINT if [ -n "$PUID$PGUID" ]; \
|
|
|
|
then echo "PUID/PGID are deprecated. Use Docker user param." >&2; exit 1; \
|
|
|
|
else dotnet /jellyfin/jellyfin.dll -programdata /config; fi
|