Skip to content

Commit 1e53389

Browse files
committed
Add resolute packages
1 parent e548592 commit 1e53389

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/Microsoft.DotNet.Docker.Tests/ProductImageTests.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,17 @@ private static IEnumerable<string> GetRuntimeDepsPackages(ProductImageData image
313313
"openssl",
314314
"libstdc++6"
315315
],
316+
{ OS: OS.ResoluteChiseled } =>
317+
[
318+
"ca-certificates",
319+
"gcc-14-base",
320+
"gcc-14",
321+
"libc6",
322+
"libgcc-s1",
323+
"libssl3t64",
324+
"openssl",
325+
"libstdc++6"
326+
],
316327
{ OS: string os } when os.Contains(OS.Noble) =>
317328
[
318329
"ca-certificates",
@@ -323,6 +334,16 @@ private static IEnumerable<string> GetRuntimeDepsPackages(ProductImageData image
323334
"openssl",
324335
"libstdc++6"
325336
],
337+
{ OS: string os } when os.Contains(OS.Resolute) =>
338+
[
339+
"ca-certificates",
340+
"gcc-14-base",
341+
"libc6",
342+
"libgcc-s1",
343+
"libssl3t64",
344+
"openssl",
345+
"libstdc++6"
346+
],
326347
{ OS: string os } when os.Contains(OS.Alpine) =>
327348
[
328349
"ca-certificates-bundle",
@@ -372,6 +393,12 @@ private static string GetZLibPackage(string os)
372393
"tzdata-legacy",
373394
"tzdata"
374395
},
396+
{ OS: OS.ResoluteChiseled } => new[]
397+
{
398+
"libicu76",
399+
"tzdata-legacy",
400+
"tzdata"
401+
},
375402
{ OS: OS.JammyChiseled } => new[]
376403
{
377404
"libicu70",

0 commit comments

Comments
 (0)