-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (18 loc) · 864 Bytes
/
Makefile
File metadata and controls
18 lines (18 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
docker-build:
docker build -f .docker/php8.4-cli/Dockerfile -t framework-8.4 .
composer-update:
docker run --rm -v $(shell pwd):/opt/php framework-8.4 sh -c 'composer update'
run-tests:
docker run --rm -v $(shell pwd):/opt/php framework-8.4 sh -c './vendor/bin/phpunit tests/'
docker-build-8.3:
docker build -f .docker/php8.4-cli/Dockerfile -t framework-8.3 .
composer-update-8.3:
docker run --rm -v $(shell pwd):/opt/php framework-8.3 sh -c 'composer update'
run-tests-8.3:
docker run --rm -v $(shell pwd):/opt/php framework-8.3 sh -c './vendor/bin/phpunit tests/'
docker-build-8.2:
docker build -f .docker/php8.4-cli/Dockerfile -t framework-8.2 .
composer-update-8.2:
docker run --rm -v $(shell pwd):/opt/php framework-8.2 sh -c 'composer update'
run-tests-8.2:
docker run --rm -v $(shell pwd):/opt/php framework-8.2 sh -c './vendor/bin/phpunit tests/'