Skip to content

Commit 891a9f6

Browse files
add arm support builds for base image (#144)
Co-authored-by: Anuraag Agrawal <[email protected]>
1 parent 014554d commit 891a9f6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

otelagent/build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,16 @@ jib {
126126
}
127127
from {
128128
image = "gcr.io/distroless/java17-debian11:debug"
129+
platforms {
130+
platform {
131+
architecture = "amd64"
132+
os = "linux"
133+
}
134+
platform {
135+
architecture = "arm64"
136+
os = "linux"
137+
}
138+
}
129139
}
130140
container {
131141
appRoot = "/aws-observability"

0 commit comments

Comments
 (0)