diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 10abab8..b5c56dc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -52,7 +52,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64,linux/ppc64le builder: ${{ steps.buildx.outputs.name }} push: true build-args: | diff --git a/.goreleaser.yml b/.goreleaser.yml index e60c5a8..21966f9 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -12,6 +12,7 @@ builds: - amd64 - arm - arm64 + - ppc64le goarm: - 6 - 7 diff --git a/makefile b/makefile index 5945e1a..d2f3c39 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ IMAGE_NAME ?= $(DOCKER_ORG)/$(BINARY):$(VERSION) GOOS ?= linux BUILD_OS := linux uname := $(shell uname -s) -BUILDX_PLATFORM ?= linux/amd64,linux/arm64,linux/arm +BUILDX_PLATFORM ?= linux/amd64,linux/arm64,linux/arm,linux/ppc64le DOCKER_ORGS ?= aquasec public.ecr.aws/aquasecurity GOARCH ?= $@