File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ matrix:
1212 fast_finish : true
1313
1414script :
15- - if [ "$flavour" = "latest" ]; then make build; else make build-alpine; fi
15+ - if [ "$flavour" = "latest" ]; then make build-latest ; else make build-alpine; fi
1616 - docker run -it --rm jakzal/phpqa:$flavour php /usr/local/bin/tools.php test
1717 - docker run -it --rm jakzal/phpqa:$flavour
1818
Original file line number Diff line number Diff line change 11default : build
22
3- build :
4- docker build -t jakzal/phpqa:latest .
3+ build : build-latest build-alpine
54.PHONY : build
65
6+ build-latest :
7+ docker build -t jakzal/phpqa:latest .
8+ .PHONY : build-latest
9+
710build-alpine :
811 docker build -f Dockerfile-alpine -t jakzal/phpqa:alpine .
912.PHONY : build-alpine
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ phpqa phpstan analyse src
8282``` bash
8383git clone https://github.com/jakzal/phpqa.git
8484cd phpqa
85- make build
85+ make build-latest
8686```
8787
8888To build the alpine version:
You can’t perform that action at this time.
0 commit comments