diff --git a/Makefile b/Makefile index b438795ed..3e40096a4 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ -.PHONY: help +SHELL=/usr/bin/env bash -o errexit + +.PHONY: help build + +export CONTAINER_ENGINE ?= podman + help: @echo "Targets:" - @echo " docker -- build the docker image" + @echo " build -- build the docker image" + +build: + $(CONTAINER_ENGINE) build . -f Dockerfile -.PHONY: docker -docker: - docker build . -f Dockerfile