-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (34 loc) · 1.28 KB
/
Makefile
File metadata and controls
50 lines (34 loc) · 1.28 KB
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
45
46
47
48
49
50
build:
docker build -t phperf/php-profiler -f Dockerfile.tideways_v5_php74 .
push:
docker push phperf/php-profiler:latest
build-v4-72:
docker build -t phperf/php-profiler:7.2-tideways-v4 -f Dockerfile.tideways_v4_php72 .
push-v4-72:
docker push phperf/php-profiler:7.2-tideways-v4
build-v5-72:
docker build -t phperf/php-profiler:7.2-tideways-v5 -f Dockerfile.tideways_v5_php72 .
push-v5-72:
docker push phperf/php-profiler:7.2-tideways-v5
build-v4-73:
docker build -t phperf/php-profiler:7.3-tideways-v4 -f Dockerfile.tideways_v4_php73 .
push-v4-73:
docker push phperf/php-profiler:7.3-tideways-v4
build-v5-73:
docker build -t phperf/php-profiler:7.3-tideways-v5 -f Dockerfile.tideways_v5_php73 .
push-v5-73:
docker push phperf/php-profiler:7.3-tideways-v5
build-v5-74:
docker build -t phperf/php-profiler:7.4-tideways-v5 -f Dockerfile.tideways_v5_php74 .
push-v5-74:
docker push phperf/php-profiler:7.4-tideways-v5
build-xhprof:
docker build -t phperf/php-profiler:5.6-xhprof -f Dockerfile.xhprof_php56 .
push-xhprof:
docker push phperf/php-profiler:5.6-xhprof
build-uprofiler:
docker build -t phperf/php-profiler:5.6-uprofiler -f Dockerfile.uprofiler_php56 .
push-uprofiler:
docker push phperf/php-profiler:5.6-uprofiler
deps:
git submodule init && git submodule update