Skip to content

Commit 31e92e9

Browse files
committed
Add arm64 architecture
1 parent aa3efcc commit 31e92e9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

build.gradle.kts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,17 @@ tasks.javadoc {
173173

174174
jib {
175175
from {
176-
image = "gcr.io/distroless/java:11"
176+
platforms {
177+
platform {
178+
architecture = "amd64"
179+
os = "linux"
180+
}
181+
platform {
182+
architecture = "arm64"
183+
os = "linux"
184+
}
185+
}
186+
image = "gcr.io/distroless/java11-debian11"
177187
}
178188
container {
179189
ports = listOf("8080")

0 commit comments

Comments
 (0)