From 3d4de25e787834ce1afc90538acbe04821f2e8f8 Mon Sep 17 00:00:00 2001 From: senthuran16 Date: Fri, 19 Jun 2026 14:07:16 +0530 Subject: [PATCH] Fix Build & push event-gateway-controller to temp registry --- .github/workflows/jfrog-scan.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/jfrog-scan.yaml b/.github/workflows/jfrog-scan.yaml index 609f6fc40..41815a94e 100644 --- a/.github/workflows/jfrog-scan.yaml +++ b/.github/workflows/jfrog-scan.yaml @@ -118,18 +118,9 @@ jobs: # ------------------------- - name: Build & push event-gateway-controller to temp registry run: | - cd gateway/gateway-controller && \ - docker buildx build -f Dockerfile \ - --build-context sdk=../../sdk \ - --build-context sdk-core=../../sdk/core \ - --build-context common=../../common \ - --build-context build-manifest=.. \ - --platform linux/amd64,linux/arm64 \ - --build-arg VERSION=trivy \ - --target production \ - -t localhost:5000/event-gateway-controller:trivy \ - --push \ - . + make -C gateway/gateway-controller build-and-push-multiarch \ + IMAGE_NAME=localhost:5000/event-gateway-controller \ + VERSION=trivy - name: JFrog scan event-gateway-controller run: |