From b0a717f48764f98b7d037aa4e0ae06c049a44420 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 9 Sep 2024 09:35:41 -0700 Subject: [PATCH] Update base image and PowerShell (#44) * Update base image * Update PowerShell to 7.4.5 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e5233e..a917783 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bedrock/ubuntu:noble-20240605 +FROM quay.io/bedrock/ubuntu:noble-20240801 # Prevent automatic apt cache cleanup, as caching is desired when running integration tests. # Instead, when installing packages during container builds, explicit cache cleanup is required. @@ -62,7 +62,7 @@ RUN apt-get update -y && \ # Install PowerShell using a binary archive. # This allows pinning to a specific version, and also brings support for multiple architectures. -RUN version="7.4.2" && \ +RUN version="7.4.5" && \ major_version="$(echo ${version} | cut -f 1 -d .)" && \ install_dir="/opt/microsoft/powershell/${major_version}" && \ tmp_file="/tmp/powershell.tgz" && \