Skip to content

Commit

Permalink
Update base image and PowerShell (#44)
Browse files Browse the repository at this point in the history
* Update base image

* Update PowerShell to 7.4.5
  • Loading branch information
mattclay authored Sep 9, 2024
1 parent 52e600e commit b0a717f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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" && \
Expand Down

0 comments on commit b0a717f

Please sign in to comment.