Skip to content

Commit

Permalink
Fix icu version for Noble chiseled
Browse files Browse the repository at this point in the history
  • Loading branch information
lbussell committed Nov 8, 2024
1 parent 339f73e commit 35f97c9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/Microsoft.DotNet.Docker.Tests/ProductImageTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand Down Expand Up @@ -510,7 +510,12 @@ private static IEnumerable<string> GetRuntimeDepsPackages(ProductImageData image
"icu",
"tzdata"
},
{ OS: string os } when os.Contains(OS.ChiseledSuffix) => new[]
{ OS: OS.NobleChiseled } => new[]
{
"libicu74",
"tzdata"
},
{ OS: OS.JammyChiseled } => new[]
{
"libicu70",
"tzdata"
Expand Down

0 comments on commit 35f97c9

Please sign in to comment.