From 0a57db22c84edb31fae4f6f8586d14792dcb69cc Mon Sep 17 00:00:00 2001 From: Michael Trip Date: Mon, 26 Jan 2026 13:48:58 +0100 Subject: [PATCH 1/2] chore: update Helm version to 4.1.0 in Dockerfile --- ubuntu-mate/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu-mate/Dockerfile b/ubuntu-mate/Dockerfile index 2c8e1b6..1a716dc 100644 --- a/ubuntu-mate/Dockerfile +++ b/ubuntu-mate/Dockerfile @@ -5,7 +5,7 @@ ARG BUILD_DATE ARG TARGETARCH ARG VERSION ARG KUBECTL_VERSION=1.35.0 -ARG HELM_VERSION=4.0.5 +ARG HELM_VERSION=4.1.0 ARG HEADLAMP_VERSION=0.39.0 ARG K9S_VERSION=0.50.18 ARG FREELENS_VERSION=1.8.0 From cd0450b0ea19d9da8a67a7af5de9455c91de4fbf Mon Sep 17 00:00:00 2001 From: Michael Trip Date: Mon, 26 Jan 2026 13:50:16 +0100 Subject: [PATCH 2/2] feat: add iputils-ping to Dockerfile package installation --- ubuntu-mate/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu-mate/Dockerfile b/ubuntu-mate/Dockerfile index 1a716dc..77a99c2 100644 --- a/ubuntu-mate/Dockerfile +++ b/ubuntu-mate/Dockerfile @@ -50,7 +50,7 @@ RUN set -eux; \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ vim neofetch pluma chromium chromium-sandbox tilix xdg-utils man-db default-jre-headless openjdk-17-jre-headless \ libreoffice-writer libreoffice-calc libreoffice-impress libreoffice-draw thunderbird gnome-themes-extra \ - gnome-themes-extra-data code thunderbird inetutils-traceroute bash-completion zsh; \ + gnome-themes-extra-data code thunderbird inetutils-traceroute bash-completion zsh iputils-ping; \ echo "**** Install downloaded packages and extract tools ****"; \ DEBIAN_FRONTEND=noninteractive apt-get install -y /tmp/freelens.deb /tmp/headlamp.deb; \ tar -C /tmp -zxvf /tmp/k9s.tar.gz; \