From a05f6f5ad43b76c88c13c7ef96f71f7ec2284b06 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sat, 5 Nov 2022 21:40:29 +0100 Subject: fix build --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fc21b8c..4a77dc5 100644 --- a/Makefile +++ b/Makefile @@ -32,12 +32,10 @@ setup-buildx: push: setup-buildx docker buildx build \ - --build-arg GOVERSION=$(GOVERSION) \ --platform $(IMAGE_PLATFORMS) \ -t $(IMAGE_NAME):latest . --push if git describe --exact-match; then \ docker buildx build \ - --build-arg GOVERSION=$(GOVERSION) \ --platform $(IMAGE_PLATFORMS) \ -t $(IMAGE_NAME):$(shell git describe --tags --abbrev=0) . --push; \ fi @@ -50,6 +48,6 @@ docker-%: -v /var/run/docker.sock:/var/run/docker.sock \ -v $(shell pwd):/data \ -w /data $(DOCKER_EXTRA_ARGS) \ - golang:$(GOVERSION) sh -c "\ + debian:latest sh -c "\ apt-get update && \ apt-get install -y $$DOCKER_DEPS && make $*" -- cgit v1.2.3