-
Notifications
You must be signed in to change notification settings - Fork 26
/
Makefile
38 lines (27 loc) · 844 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
35
36
37
38
REGISTRY := quay.io
DEFAULT_TAG := latest
ifeq ($(TARGET),rhel)
DOCKERFILE := Dockerfile.rhel
REPOSITORY := openshiftio/rhel-fabric8-analytics-fabric8-gemini-server
else
DOCKERFILE := Dockerfile.old
REPOSITORY := openshiftio/fabric8-analytics-fabric8-gemini-server
endif
.PHONY: all docker-build fast-docker-build test get-image-name get-image-repository
all: fast-docker-build
docker-build:
docker build --no-cache -t $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG) -f $(DOCKERFILE) .
fast-docker-build:
docker build -t $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG) -f $(DOCKERFILE) .
test:
./qa/runtests.sh
check-code-style:
./qa/run-linter.sh
check-docs-style:
./qa/check-docstyle.sh
get-image-name:
@echo $(REGISTRY)/$(REPOSITORY):$(DEFAULT_TAG)
get-image-repository:
@echo $(REPOSITORY)
get-push-registry:
@echo $(REGISTRY)