forked from 104corp/docker-php-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (23 loc) · 913 Bytes
/
Makefile
File metadata and controls
32 lines (23 loc) · 913 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
#!/usr/bin/make -f
IMAGE := 104corp/php-testing
.PHONY: 5.5 5.6 7.0 7.1 7.2 7.3
# ------------------------------------------------------------------------------
all: 5.5 5.6 7.0 7.1 7.2 7.3
5.5:
docker build -t=$(IMAGE):5.5 -f 5.5/Dockerfile .
docker build -t=$(IMAGE):5.5-apache -f 5.5/apache/Dockerfile .
5.6:
docker build -t=$(IMAGE):5.6 -f 5.6/Dockerfile .
docker build -t=$(IMAGE):5.6-apache -f 5.6/apache/Dockerfile .
7.0:
docker build -t=$(IMAGE):7.0 -f 7.0/Dockerfile .
docker build -t=$(IMAGE):7.0-apache -f 7.0/apache/Dockerfile .
7.1:
docker build -t=$(IMAGE):7.1 -f 7.1/Dockerfile .
docker build -t=$(IMAGE):7.1-apache -f 7.1/apache/Dockerfile .
7.2:
docker build -t=$(IMAGE):7.2 -f 7.2/Dockerfile .
docker build -t=$(IMAGE):7.2-apache -f 7.2/apache/Dockerfile .
7.3:
docker build -t=$(IMAGE):7.3 -f 7.3/Dockerfile .
docker build -t=$(IMAGE):7.3-apache -f 7.3/apache/Dockerfile .