Skip to content

Commit

Permalink
feat(jib): add platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
GHGHGHKO committed Feb 17, 2024
1 parent 56a6338 commit 2fbdb0e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ sourceCompatibility = '11'
jib {
from {
image = "adoptopenjdk/openjdk11:x86_64-alpine-jre-11.0.11_9"
platforms {
platform {
architecture = 'amd64'
os = 'linux'
}
platform {
architecture = 'arm64'
os = 'linux'
}
}
}
to {
image = "gudrb963/goose-auth-api"
Expand Down

0 comments on commit 2fbdb0e

Please # to comment.