From dbd0c8d8f146429d38e900bfabf88e82b73549d5 Mon Sep 17 00:00:00 2001 From: xnacly <47723417+xnacly@users.noreply.github.com> Date: Tue, 16 Jun 2026 12:09:25 +0200 Subject: [PATCH] MILAB-6435: bump hook image base to ubuntu 24.04 LTS Moves the integration-tests hook image off the EOL ubuntu:20.04 base. Verified locally: image builds, aws and shasum run, entrypoint behavior unchanged. --- docker/hook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/hook/Dockerfile b/docker/hook/Dockerfile index 5688a6cc..cac960ee 100644 --- a/docker/hook/Dockerfile +++ b/docker/hook/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as aws-installer +FROM ubuntu:24.04 as aws-installer RUN apt-get update \ && apt-get install --yes unzip @@ -8,7 +8,7 @@ WORKDIR /installer RUN unzip awscli.zip -FROM ubuntu:20.04 +FROM ubuntu:24.04 COPY --from=aws-installer /installer /aws-cli-installer RUN /aws-cli-installer/aws/install \