aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Lavado <anthonylavado@users.noreply.github.com>2019-01-21 23:55:17 -0500
committerGitHub <noreply@github.com>2019-01-21 23:55:17 -0500
commit29f333009188ccaef721ae1d003ee2e921ec0944 (patch)
tree32400018a679df757222762ef29982857a5a4065
parent8d298e0e36ebb399b547cd86c4467ffa3f54a836 (diff)
parent8108e295dcbb001e0ef1b83b3b4832cff78644a3 (diff)
Merge pull request #666 from nvllsvm/cross-platform
Add cross-platform build for arm64
-rw-r--r--.dockerignore2
-rw-r--r--Dockerfile.arm10
-rw-r--r--Dockerfile.arm6433
3 files changed, 41 insertions, 4 deletions
diff --git a/.dockerignore b/.dockerignore
index 54b0aa3a7..45e543525 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -1,6 +1,8 @@
.git
.dockerignore
Dockerfile
+Dockerfile.arm
+Dockerfile.arm64
CONTRIBUTORS.md
README.md
deployment/*/dist
diff --git a/Dockerfile.arm b/Dockerfile.arm
index a0b3d0e1d..cf062f38a 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -1,18 +1,20 @@
ARG DOTNET_VERSION=3.0
-FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-sdk-stretch-arm32v7 as builder
WORKDIR /repo
COPY . .
#TODO Remove or update the sed line when we update dotnet version.
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
- && find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \; \
- && dotnet clean \
+ && dotnet clean -maxcpucount:1 \
&& dotnet publish \
+ -maxcpucount:1 \
--configuration release \
--output /jellyfin \
Jellyfin.Server
-FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-runtime-stretch-slim-arm32v7
COPY --from=builder /jellyfin /jellyfin
EXPOSE 8096
RUN apt-get update \
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
new file mode 100644
index 000000000..6d7aa2118
--- /dev/null
+++ b/Dockerfile.arm64
@@ -0,0 +1,33 @@
+# Requires binfm_misc registration for aarch64
+# https://github.com/multiarch/qemu-user-static#binfmt_misc-register
+ARG DOTNET_VERSION=3.0
+
+
+FROM multiarch/qemu-user-static:x86_64-aarch64 as qemu
+FROM alpine as qemu_extract
+COPY --from=qemu /usr/bin qemu_user_static.tgz
+RUN tar -xzvf qemu_user_static.tgz
+
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-sdk-stretch-arm64v8 as builder
+COPY --from=qemu_extract qemu-* /usr/bin
+WORKDIR /repo
+COPY . .
+#TODO Remove or update the sed line when we update dotnet version.
+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 \
+ Jellyfin.Server
+
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-runtime-stretch-slim-arm64v8
+COPY --from=qemu_extract qemu-* /usr/bin
+COPY --from=builder /jellyfin /jellyfin
+EXPOSE 8096
+RUN apt-get update \
+ && apt-get install -y ffmpeg
+VOLUME /config /media
+ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config