aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm64
diff options
context:
space:
mode:
authorartiume <siderite@gmail.com>2020-01-17 00:35:41 -0500
committerAnthony Lavado <anthony@lavado.ca>2020-01-17 00:35:41 -0500
commit73a47e934d1699c5969167c0b614216f108defd3 (patch)
treeb3d2f5b4c2570976ba389d649407e10f5b76f460 /Dockerfile.arm64
parentbdbf7a69f6fee8e81064499a35d4b816646a6b55 (diff)
Fix Docker Arm Nightly (#2286)
* Fix Docker Arm Nightly Updated image base. There was an error for libssl missing. I attempted to add libssl1.0.0 but it wasn't found so I fell back to libssl-dev. Much more work needs to be done. ffmpeg is still debian based. I attempted to add jellyfin-ffmpeg but I was having too many issues so I'm saving it for another day, but it at least builds out successfully. * Fix docker arm64 nightly
Diffstat (limited to 'Dockerfile.arm64')
-rw-r--r--Dockerfile.arm643
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index d41268f13..796d12f98 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -24,10 +24,11 @@ RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin"
FROM multiarch/qemu-user-static:x86_64-aarch64 as qemu
-FROM debian:stretch-slim-arm64v8
+FROM debian:stretch-slim
COPY --from=qemu /usr/bin/qemu-aarch64-static /usr/bin
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y ffmpeg \
+ libssl-dev \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /cache /config /media \
&& chmod 777 /cache /config /media