From e1f08d59a7d9d665eb5280e2abc9a29c979bd29f Mon Sep 17 00:00:00 2001 From: Paul Schoenfelder Date: Fri, 30 Jun 2023 16:27:49 -0400 Subject: [PATCH] ci: temporarily disable arm build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 923d962..54ee7c7 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ build: setup-buildx ## Build the Docker image docker buildx build --output "type=image,push=false" \ --build-arg ERLANG_VERSION=$(ERLANG_VERSION) \ --build-arg ELIXIR_VERSION=$(VERSION) \ - --platform linux/amd64,linux/arm64 \ + --platform linux/amd64 \ --cache-from "type=local,src=$(BUILDX_CACHE_DIR)" \ --cache-to "type=local,dest=$(BUILDX_CACHE_DIR)" \ -t $(IMAGE_NAME):$(VERSION) \ @@ -73,7 +73,7 @@ release: setup-buildx ## Build and release the Docker image to Docker Hub docker buildx build --push \ --build-arg ERLANG_VERSION=$(ERLANG_VERSION) \ --build-arg ELIXIR_VERSION=$(VERSION) \ - --platform linux/amd64,linux/arm64 \ + --platform linux/amd64 \ --cache-from "type=local,src=$(BUILDX_CACHE_DIR)" \ --cache-to "type=local,dest=$(BUILDX_CACHE_DIR)" \ -t $(IMAGE_NAME):$(VERSION) \