Skip to content

Commit 40ae14f

Browse files
committed
Merge remote-tracking branch 'upstream/main' into release/2025-mar
2 parents e78bbc7 + 97739e1 commit 40ae14f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

eng/common/Invoke-ImageBuilder.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Executes ImageBuilder with the specified args.
88
The args to pass to ImageBuilder.
99
1010
.PARAMETER ReuseImageBuilderImage
11-
Indicates that a previously built ImageBuilder image is presumed to exist locally and that
11+
Indicates that a previously built ImageBuilder image is presumed to exist locally and that
1212
it should be used for this execution of the script. This allows some optimization when
1313
multiple calls are being made to this script that don't require a fresh image (i.e. the
1414
repo contents in the image don't need to be or should not be updated with each call to
@@ -74,6 +74,7 @@ try {
7474
}
7575
else {
7676
# On Windows, ImageBuilder is run locally due to limitations with running Docker client within a container.
77+
# Remove when https://github.com/dotnet/docker-tools/issues/159 is resolved
7778
$imageBuilderFolder = ".Microsoft.DotNet.ImageBuilder"
7879
$imageBuilderCmd = [System.IO.Path]::Combine($imageBuilderFolder, "Microsoft.DotNet.ImageBuilder.exe")
7980
if (-not (Test-Path -Path "$imageBuilderCmd" -PathType Leaf)) {
@@ -99,6 +100,6 @@ finally {
99100
if ($containerCreated) {
100101
Exec "docker container rm -f $imageBuilderContainerName"
101102
}
102-
103+
103104
popd
104105
}

eng/common/templates/variables/docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
imageNames.imageBuilderName: mcr.microsoft.com/dotnet-buildtools/image-builder:2647883
2+
imageNames.imageBuilderName: mcr.microsoft.com/dotnet-buildtools/image-builder:2657098
33
imageNames.imageBuilder: $(imageNames.imageBuilderName)
44
imageNames.imageBuilder.withrepo: imagebuilder-withrepo:$(Build.BuildId)-$(System.JobId)
55
imageNames.testRunner: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux3.0-docker-testrunner

0 commit comments

Comments
 (0)