From 2fbdb0e96285d355dbd41775111626f3fbb3313f Mon Sep 17 00:00:00 2001 From: GHGHGHKO Date: Sat, 17 Feb 2024 18:51:45 +0900 Subject: [PATCH] feat(jib): add platforms --- build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index 7936eff..d076d32 100644 --- a/build.gradle +++ b/build.gradle @@ -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"