We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33129e7 commit cf34d58Copy full SHA for cf34d58
build/Targets.fs
@@ -74,7 +74,14 @@ let private publishZip _ =
74
let private publishContainers _ =
75
76
let createImage project =
77
- let imageTag = match project with | "docs-builder" -> "jammy-chiseled-aot" | _ -> "jammy-chiseled"
+ let imageTag =
78
+ match project with
79
+ | "docs-builder" -> "jammy-chiseled-aot"
80
+ // When .NET 10 releases we can create a chiseled image with git more easily
81
+ // https://github.com/dotnet/dotnet-docker/blob/main/documentation/ubuntu-chiseled.md#how-do-i-install-additional-packages-on-chiseled-images
82
+ // For now we run with base jammy
83
+ | "docs-assembler" -> "jammy"
84
+ | _ -> "jammy-chiseled-aot"
85
let labels =
86
let exitCode = exec {
87
validExitCode (fun _ -> true)
0 commit comments