# build many
$ make
# or build one
$ make -C starter
# build many
$ make TARGET=centos7
# or build one
$ make -C starter TARGET=centos7
$ make run -C starter
$ make run -C starter TARGET=centos7
$ yum -y install nodejs
$ npm install -g dockerfile_lint
$ make lint
# test many images
$ make test
# or test one image
$ make test -C starter
# test many images
$ make test TARGET=centos7
# or test one image
$ make test -C starter TARGET=centos7
# login as an admin user to retrieve the registry address
$ oc login -u system:admin
$ REGISTRY=`oc get svc/docker-registry -n default --template '{{.spec.clusterIP}}:{{index .spec.ports 0 "port"}}'`
# login as a regular user before executing any tests
$ oc login -u developer -p developer
$ make openshift-test -C starter OC_USER=`oc whoami` OC_PASS=`oc whoami -t` REGISTRY=${REGISTRY}
# or test a centos7 image
$ make openshift-test -C starter TARGET=centos7 OC_USER=`oc whoami` OC_PASS=`oc whoami -t` REGISTRY=${REGISTRY}
```shell
$ docker build --pull -t acme/starter -t acme/starter:v3.2 starter
$ docker build --pull -t acme/starter-httpd -t acme/starter-httpd:v3.2 starter-httpd
$ docker build --pull -t acme/starter-nsswrapper -t acme/starter-nsswrapper:v3.2 starter-nsswrapper
$ docker build --pull -t acme/starter-systemd -t acme/starter-systemd:v3.2 starter-systemd
$ docker build --pull -t rhel7/java:jre8 jre
$ docker build --pull -t rhel7/java:sdk8 sdk
$ docker build --pull -t rhel7/java:oracle-jre8 oracle-jre
$ docker build --pull -t rhel7/java:oracle-jdk8 oracle-jdk