Skip to content

Commit

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

Update base image update script to not include `generic-mqtt-tester` base image.
  • Loading branch information
yophilav committed Apr 12, 2021
1 parent 4cd5089 commit bdaffc4
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 bdaffc4

Please sign in to comment.