forked from vbanthia-zz/docker-appium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (34 loc) · 747 Bytes
/
Makefile
File metadata and controls
44 lines (34 loc) · 747 Bytes
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
39
40
41
42
43
44
.DEFAULT_GOAL := all
TAG ?= 'latest'
.PHONY: all
all:
$(MAKE) build-all
$(MAKE) push-all
.PHONY: build-base
build-base:
docker build -t vbanthia/appium-base:$(TAG) ./appium-base/
.PHONY: build-ruby
build-ruby:
docker build -t vbanthia/appium-ruby:$(TAG) ./appium-ruby/
.PHONY: build-stf
build-stf:
docker build -t vbanthia/appium-stf:$(TAG) ./appium-stf
.PHONY: push-base
push-base:
docker push vbanthia/appium-base:$(TAG)
.PHONY: push-ruby
push-ruby:
docker push vbanthia/appium-ruby:$(TAG)
.PHONY: push-stf
push-stf:
docker push vbanthia/appium-stf:$(TAG)
.PHONY: build-all
build-all:
$(MAKE) build-base
$(MAKE) build-ruby
$(MAKE) build-stf
.PHONY: push-all
push-all:
$(MAKE) push-base
$(MAKE) push-ruby
$(MAKE) push-stf