forked from fabric8-analytics/graph-cve-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (25 loc) · 852 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
34
ifeq ($(TARGET),rhel)
DOCKERFILE := Dockerfile.rhel
REPOSITORY := openshiftio/rhel-fabric8-analytics-graph-cve-sync
else
DOCKERFILE := Dockerfile
REPOSITORY := openshiftio/fabric8-analytics-graph-cve-sync
endif
REGISTRY := quay.io
DEFAULT_TAG=latest
.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:
./runtests.sh
get-image-name:
@echo $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG)
get-image-repository:
@echo $(REPOSITORY)
get-push-registry:
@echo $(REGISTRY)