We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf4cd7f commit 2c3bffcCopy full SHA for 2c3bffc
build.mill.scala
@@ -22,6 +22,7 @@ object Versions {
22
def osLib = "0.11.4"
23
def uTest = "0.8.5"
24
def jline = "3.25.0"
25
+ def ubuntu = "24.04"
26
}
27
28
trait JavaMainClassNativeImage extends NativeImage {
@@ -152,7 +153,7 @@ object `java-class-name` extends JavaClassNameModule with JavaMainClassNativeIma
152
153
154
def nativeImageDockerParams: Target[Option[NativeImage.DockerParams]] = Some(
155
NativeImage.linuxMostlyStaticParams(
- "ubuntu:18.04", // TODO Pin that?
156
+ s"ubuntu:${Versions.ubuntu}",
157
s"https://github.com/coursier/coursier/releases/download/v${Versions.coursier}/cs-x86_64-pc-linux.gz"
158
)
159
0 commit comments