From 8f92e7ac75d371ccb9961afbf7b9f5bce740a018 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:57:19 +0100 Subject: [PATCH] allow arm64 https://github.com/alexbelgium/hassio-addons/issues/2146 --- ente/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ente/Dockerfile b/ente/Dockerfile index f17fda471..469a3d3d1 100644 --- a/ente/Dockerfile +++ b/ente/Dockerfile @@ -54,10 +54,11 @@ RUN chmod 744 /ha_lsio.sh && \ # --- MinIO, psql client etc. (unchanged) --- RUN set -eux; \ + if [ "$BUILD_ARCH" = "aarch64" ]; then BUILD_ARCH="arm64"; fi apk add --no-cache \ bash curl ca-certificates wget jq tini postgresql15-client; \ - curl -fsSL https://dl.min.io/server/minio/release/linux-amd64/minio -o /usr/local/bin/minio; \ - curl -fsSL https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc; \ + curl -fsSL https://dl.min.io/server/minio/release/linux-"$BUILD_ARCH"/minio -o /usr/local/bin/minio; \ + curl -fsSL https://dl.min.io/client/mc/release/linux-"$BUILD_ARCH"/mc -o /usr/local/bin/mc; \ chmod +x /usr/local/bin/minio /usr/local/bin/mc RUN apk add --no-cache \ lsb-release curl gnupg wget tini jq sudo \