From b006125ada90fffb872fc18a2aaf7c212a354c05 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Fri, 26 Jun 2020 19:47:01 -0400 Subject: [PATCH] Trigger build without buildx --- images/cfssl/Makefile | 2 +- images/echo/Makefile | 2 +- images/fastcgi-helloserver/Makefile | 2 +- images/httpbin/Makefile | 2 +- images/test-runner/Makefile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/images/cfssl/Makefile b/images/cfssl/Makefile index 55bb3deb8..4d85ae5c4 100644 --- a/images/cfssl/Makefile +++ b/images/cfssl/Makefile @@ -31,7 +31,7 @@ PLATFORMS?=linux/amd64 OUTPUT= PROGRESS=plain -build: ensure-buildx +build: docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \ diff --git a/images/echo/Makefile b/images/echo/Makefile index 9f5ad0310..0f1c11df2 100644 --- a/images/echo/Makefile +++ b/images/echo/Makefile @@ -31,7 +31,7 @@ PLATFORMS?=linux/amd64 OUTPUT= PROGRESS=plain -build: ensure-buildx +build: docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \ diff --git a/images/fastcgi-helloserver/Makefile b/images/fastcgi-helloserver/Makefile index 1d358194b..622a89cc4 100644 --- a/images/fastcgi-helloserver/Makefile +++ b/images/fastcgi-helloserver/Makefile @@ -33,7 +33,7 @@ PLATFORMS?=linux/amd64 OUTPUT= PROGRESS=plain -build: ensure-buildx +build: docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \ diff --git a/images/httpbin/Makefile b/images/httpbin/Makefile index 90d2fbb09..02a862bee 100644 --- a/images/httpbin/Makefile +++ b/images/httpbin/Makefile @@ -31,7 +31,7 @@ PLATFORMS?=linux/amd64 OUTPUT= PROGRESS=plain -build: ensure-buildx +build: docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \ diff --git a/images/test-runner/Makefile b/images/test-runner/Makefile index 05d67d1cc..f8d757135 100644 --- a/images/test-runner/Makefile +++ b/images/test-runner/Makefile @@ -31,7 +31,7 @@ PLATFORMS?=linux/amd64 OUTPUT= PROGRESS=plain -build: ensure-buildx +build: docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \