From 4f77d085ce69df4d4c35ae5b5963d7f06e853635 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Wed, 30 Jul 2025 11:30:33 -0500 Subject: [PATCH] [8.19] Fix Kibana build Fixes an issue where the architecture used to download kibana.tar.gz is in the wrong format. We missed this during testing due to local artifacts being used while the released artifacts were pending. --- kibana/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kibana/Dockerfile b/kibana/Dockerfile index 74c3594..9e974e8 100644 --- a/kibana/Dockerfile +++ b/kibana/Dockerfile @@ -15,6 +15,11 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl RUN cd /tmp && \ arch="$(dpkg --print-architecture)" && \ + case "$arch" in \ + amd64) arch='x86_64' ;; \ + arm64) arch='aarch64' ;; \ + *) echo >&2 "Unsupported architecture $arch" ; exit 1 ;; \ + esac && \ curl -f --retry 8 -s -L \ --output kibana.tar.gz \ https://artifacts.elastic.co/downloads/kibana/kibana-8.19.0-linux-${arch}.tar.gz && \