Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/alpine/3.23/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM amd64/alpine:3.23
ARG PIP_INDEX_URL
ENV PIP_INDEX_URL=${PIP_INDEX_URL}

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN apk add --upgrade --no-cache \
# Install .NET and test dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/alpine/3.24/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM amd64/alpine:3.24
ARG PIP_INDEX_URL
ENV PIP_INDEX_URL=${PIP_INDEX_URL}

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN apk add --upgrade --no-cache \
# Install .NET and test dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/debian/13/gcc16/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM library/gcc:16-trixie

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

# Dependencies for dotnet/runtime native components.
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion src/fedora/43/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM library/fedora:43

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN dnf upgrade --refresh -y \
&& dnf config-manager addrepo --from-repofile=https://packages.microsoft.com/fedora/43/prod/config.repo \
Expand Down
2 changes: 1 addition & 1 deletion src/fedora/44/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM library/fedora:44

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN dnf upgrade --refresh -y \
&& dnf config-manager addrepo --from-repofile=https://packages.microsoft.com/fedora/43/prod/config.repo \
Expand Down
2 changes: 1 addition & 1 deletion src/fedora/45/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM library/fedora:45

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN dnf upgrade --refresh -y \
&& dnf config-manager addrepo --from-repofile=https://packages.microsoft.com/fedora/43/prod/config.repo \
Expand Down
2 changes: 1 addition & 1 deletion src/fedora/rawhide/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM library/fedora:rawhide

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

RUN dnf upgrade --refresh -y \
&& dnf config-manager addrepo --from-repofile=https://packages.microsoft.com/fedora/43/prod/config.repo \
Expand Down
2 changes: 1 addition & 1 deletion src/nanoserver/1809/helix/amd64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# escape=`
FROM mcr.microsoft.com/windows/servercore:ltsc2019 AS installer

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

Expand Down
2 changes: 1 addition & 1 deletion src/ubuntu/24.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu.azurecr.io/ubuntu:24.04

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

# Install the base toolchain we need to build anything (clang, cmake, make and the like)
# this does not include libraries that we need to compile different projects, we'd like
Expand Down
2 changes: 1 addition & 1 deletion src/ubuntu/26.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu.azurecr.io/ubuntu:26.04

ENV POWERSHELL_VERSION=7.6.1
ENV POWERSHELL_VERSION=7.6.2

# Install the base toolchain we need to build anything (clang, cmake, make and the like)
# this does not include libraries that we need to compile different projects, we'd like
Expand Down
Loading