Skip to content

Commit aa33b66

Browse files
committed
Update dependencies
1 parent 8ebe677 commit aa33b66

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

frameworks/Kotlin/hexagon/build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,26 @@ subprojects {
3232
tasks.wrapper {
3333
gradleVersion = "8.5-rc-3"
3434
}
35+
36+
//extensions.configure<GraalVMExtension> {
37+
// fun option(name: String, value: (String) -> String): String? =
38+
// getProperty(name)?.let(value)
39+
//
40+
// binaries {
41+
// named("main") {
42+
// listOfNotNull(
43+
// option("static") { "--static" },
44+
// option("enableMonitoring") { "--enable-monitoring" },
45+
// option("pgoInstrument") { "--pgo-instrument" },
46+
// option("pgo") { "--pgo=../../../default.iprof" },
47+
// )
48+
// .forEach(buildArgs::add)
49+
// }
50+
// named("test") {
51+
// listOfNotNull(
52+
// option("pgoInstrument") { "--pgo-instrument" },
53+
// )
54+
// .forEach(buildArgs::add)
55+
// }
56+
// }
57+
//}

frameworks/Kotlin/hexagon/hexagon-helidon-native.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# BUILD
33
#
4-
FROM ghcr.io/graalvm/native-image:21-muslib-ol9 as build
4+
FROM container-registry.oracle.com/graalvm/native-image:21-muslib-ol9 as build
55
USER root
66
WORKDIR /hexagon
77

frameworks/Kotlin/hexagon/hexagon-jetty-native.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# BUILD
33
#
4-
FROM ghcr.io/graalvm/native-image:21-muslib-ol9 as build
4+
FROM container-registry.oracle.com/graalvm/native-image:21-muslib-ol9 as build
55
USER root
66
WORKDIR /hexagon
77

0 commit comments

Comments
 (0)