-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (19 loc) · 785 Bytes
/
Makefile
File metadata and controls
22 lines (19 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# `adocker` is alias to `azk docker`
all:
# latest
adocker build -t azukiapp/ruby ./2.2
# version tagged
adocker build -t azukiapp/ruby:1.9 ./1.9
adocker build -t azukiapp/ruby:2.0 ./2.0
adocker build -t azukiapp/ruby:2.1 ./2.1
adocker build -t azukiapp/ruby:2.2 ./2.2
adocker build -t azukiapp/ruby:2.3 ./2.3
--no-cache:
# latest
adocker build --rm --no-cache -t azukiapp/ruby ./2.3
# version tagged
adocker build --rm --no-cache -t azukiapp/ruby:1.9 ./1.9
adocker build --rm --no-cache -t azukiapp/ruby:2.0 ./2.0
adocker build --rm --no-cache -t azukiapp/ruby:2.1 ./2.1
adocker build --rm --no-cache -t azukiapp/ruby:2.2 ./2.2
adocker build --rm --no-cache -t azukiapp/ruby:2.3 ./2.3