-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
33 lines (24 loc) · 831 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
REGISTRY ?= quay.io
DEFAULT_TAG = latest
DOCKERFILE := Dockerfile
ifeq ($(TARGET),rhel)
REPOSITORY ?= openshiftio/rhel-fabric8-analytics-f8a-bq-manifests-job
else
REPOSITORY ?= openshiftio/fabric8-analytics-f8a-bq-manifests-job
endif
.PHONY: all docker-build fast-docker-build test get-image-name get-image-repository get-push-registry
all: fast-docker-build
docker-build:
docker build --no-cache -t $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG) -f $(DOCKERFILE) .
@echo $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG)
fast-docker-build:
docker build -t $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG) -f $(DOCKERFILE) .
@echo $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG)
test:
./runtest.sh
get-image-name:
@echo $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG)
get-image-repository:
@echo $(REPOSITORY)
get-push-registry:
@echo $(REGISTRY)