|
@@ -1,3 +1,7 @@
|
|
|
|
+# DESIGNED FOR BUILDING ON AMD64 ONLY
|
|
|
|
+#####################################
|
|
|
|
+# Requires binfm_misc registration
|
|
|
|
+# https://github.com/multiarch/qemu-user-static#binfmt_misc-register
|
|
ARG DOTNET_VERSION=3.1
|
|
ARG DOTNET_VERSION=3.1
|
|
|
|
|
|
|
|
|
|
@@ -20,8 +24,9 @@ RUN find . -type d -name obj | xargs -r rm -r
|
|
# Build
|
|
# Build
|
|
RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-arm64 "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
|
|
RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-arm64 "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
|
|
|
|
|
|
-
|
|
|
|
-FROM debian:buster-slim
|
|
|
|
|
|
+FROM multiarch/qemu-user-static:x86_64-aarch64 as qemu
|
|
|
|
+FROM arm64v8/debian:buster-slim
|
|
|
|
+COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin
|
|
RUN apt-get update \
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y ffmpeg \
|
|
&& apt-get install --no-install-recommends --no-install-suggests -y ffmpeg \
|
|
libssl-dev ca-certificates \
|
|
libssl-dev ca-certificates \
|