From 8d65106425190ba15b2bc542d9a4fcb0181b881c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 8 Feb 2023 11:16:45 +0100 Subject: Makefile: remove docker/build recipe It's kinda counter-productive to have it, since it's exactly the same as compose/build. --- Makefile | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cdafbf6..5b9e281 100644 --- a/Makefile +++ b/Makefile @@ -81,24 +81,6 @@ ifndef FORCE $(error Please use `docker buildx build --push` instead) endif -# `docker build` has week support for multiarch repos (you need to use multiple -# Dockerfile's, create a manifest manually, etc.), so it's only here for -# testing purposes, and native builds. -docker/build/%: DO check-build - docker build -t '$(call escape,$(DOCKER_USERNAME))/$*' '$*/' - -.PHONY: docker/build -docker/build: docker/build/dump1090 docker/build/fr24feed - -# `docker push` would replace the multiarch repo with a single image by default -# (you'd have to create a manifest and push it instead), so it's only here for -# testing purposes. -docker/push/%: DO check-push docker/build/% - docker push '$(call escape,$(DOCKER_USERNAME))/$*' - -.PHONY: docker/push -docker/push: check-push docker/push/dump1090 docker/push/fr24feed - .PHONY: compose/build # `docker-compose build` has the same problems as `docker build`. compose/build: check-build -- cgit v1.2.3