From f50b22aac443614af48500bd3f7facd4b1c16602 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 20 Dec 2018 01:15:11 -0500 Subject: [PATCH] Add aarch64 image There is no 2 version of the dotnet image for aarch64. Need to use a 3 image for now. --- Dockerfile.aarch64 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile.aarch64 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 new file mode 100644 index 0000000000..da4acc8412 --- /dev/null +++ b/Dockerfile.aarch64 @@ -0,0 +1,17 @@ +ARG DOTNET_VERSION=3.0 + +FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder +WORKDIR /repo +COPY . . +RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \ + && find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \; \ + && dotnet clean \ + && dotnet publish --configuration release --output /jellyfin + +FROM microsoft/dotnet:${DOTNET_VERSION}-runtime +COPY --from=builder /jellyfin /jellyfin +EXPOSE 8096 +RUN apt update \ + && apt install -y ffmpeg +VOLUME /config /media +ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config