2019-02-16 06:37:55 +00:00
|
|
|
# Requires binfm_misc registration
|
|
|
|
# https://github.com/multiarch/qemu-user-static#binfmt_misc-register
|
2019-01-22 04:17:56 +00:00
|
|
|
ARG DOTNET_VERSION=3.0
|
2018-12-20 06:15:11 +00:00
|
|
|
|
2019-01-22 03:47:51 +00:00
|
|
|
|
2019-09-12 22:24:09 +00:00
|
|
|
FROM node:alpine as web-builder
|
|
|
|
ARG JELLYFIN_WEB_VERSION=v10.4.0
|
|
|
|
RUN apk add curl \
|
|
|
|
&& curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
|
|
|
|
&& cd jellyfin-web-* \
|
|
|
|
&& yarn install \
|
|
|
|
&& yarn build \
|
|
|
|
&& mv dist /dist
|
|
|
|
|
|
|
|
|
2019-04-03 05:21:28 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION} as builder
|
2018-12-20 06:15:11 +00:00
|
|
|
WORKDIR /repo
|
|
|
|
COPY . .
|
2019-02-16 06:37:55 +00:00
|
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
|
|
# TODO Remove or update the sed line when we update dotnet version.
|
|
|
|
RUN find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \;
|
|
|
|
# Discard objs - may cause failures if exists
|
|
|
|
RUN find . -type d -name obj | xargs -r rm -r
|
|
|
|
# Build
|
2019-02-24 10:17:39 +00:00
|
|
|
RUN bash -c "source deployment/common.build.sh && \
|
|
|
|
build_jellyfin Jellyfin.Server Release linux-arm /jellyfin"
|
2018-12-20 06:15:11 +00:00
|
|
|
|
2019-01-22 03:47:51 +00:00
|
|
|
|
2019-06-07 04:00:14 +00:00
|
|
|
FROM multiarch/qemu-user-static:x86_64-arm as qemu
|
2019-04-03 05:21:28 +00:00
|
|
|
FROM mcr.microsoft.com/dotnet/core/runtime:${DOTNET_VERSION}-stretch-slim-arm32v7
|
2019-06-07 04:00:14 +00:00
|
|
|
COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin
|
2019-01-12 02:04:36 +00:00
|
|
|
RUN apt-get update \
|
2019-02-16 20:25:44 +00:00
|
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y ffmpeg \
|
2019-03-15 13:37:11 +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-25 18:26:55 +00:00
|
|
|
COPY --from=builder /jellyfin /jellyfin
|
2019-09-24 14:22:26 +00:00
|
|
|
COPY --from=web-builder /dist /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/bin/ffmpeg
|