Skip to content

Commit

Permalink
Update base image update script to not include generic-mqtt-tester (A…
Browse files Browse the repository at this point in the history
…zure#4832)

Update base image update script to not include `generic-mqtt-tester` base image.
Cherry-picked: Azure@0b6bace
  • Loading branch information
yophilav authored and ggjjj committed Jul 22, 2021
1 parent 87b4225 commit 151cfd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/BaseImageUpdate/baseImage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function Update-ARM-BaseImages
Setup-BaseImage-Script

# Get all the Dockerfile file location
$fileLocale = $(Get-ChildItem -Recurse -Filter "Dockerfile" )
$fileLocale = $(Get-ChildItem -Recurse -Filter "Dockerfile" | Where {$_.FullName -notlike "*generic-mqtt-tester*"})

# Replace the underlying ASP .Net Core to the new version
# Assuming the ARM64 & ARM32 both use the same *-bionic-arm* ASP .Net Core image tag
Expand Down

0 comments on commit 151cfd6

Please sign in to comment.