github.com/openshift/source-to-image@v1.4.1-0.20240516041539-bf52fc02204e/examples/nginx-centos7/Makefile (about) 1 2 IMAGE_NAME = nginx-centos7 3 4 .PHONY: build 5 build: 6 docker build -t $(IMAGE_NAME) . 7 8 .PHONY: test 9 test: 10 docker build -t $(IMAGE_NAME)-candidate . 11 IMAGE_NAME=$(IMAGE_NAME)-candidate test/run