From 3e961321ad677b170a2107823c13420eb51a7273 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 00:42:30 +0000 Subject: [PATCH 1/2] Update ubuntu Docker tag to v26 --- infra/build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/build/Dockerfile b/infra/build/Dockerfile index b011a4a..51774bd 100644 --- a/infra/build/Dockerfile +++ b/infra/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:24.04@sha256:c4a8d5503dfb2a3eb8ab5f807da5bc69a85730fb49b5cfca2330194ebcc41c7b +FROM ubuntu:26.04@sha256:5e275723f82c67e387ba9e3c24baa0abdcb268917f276a0561c97bef9450d0b4 ARG BUILD_USER=ubuntu ENV HOME=/home/${BUILD_USER} From 151c8fac5be04a873201b1213409809ee26bc2f9 Mon Sep 17 00:00:00 2001 From: Scott Giminiani Date: Tue, 28 Apr 2026 15:18:28 -0400 Subject: [PATCH 2/2] Fix apt package versions for Ubuntu 26.04 --- infra/build/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/infra/build/Dockerfile b/infra/build/Dockerfile index 51774bd..71e2a60 100644 --- a/infra/build/Dockerfile +++ b/infra/build/Dockerfile @@ -5,11 +5,11 @@ ENV HOME=/home/${BUILD_USER} RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - git=1:2.43.0-1ubuntu7.3 \ - openssh-client=1:9.6p1-3ubuntu13.15 \ - openjdk-17-jdk=17.0.18+8-1~24.04.1 \ - jq=1.7.1-3ubuntu0.24.04.2 \ - gnupg=2.4.4-2ubuntu17.4 \ + git=1:2.53.0-1ubuntu1 \ + openssh-client=1:10.2p1-2ubuntu3 \ + openjdk-17-jdk=17.0.18+8-1 \ + jq=1.8.1-4ubuntu2 \ + gnupg=2.4.8-4ubuntu3 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*