Files
php-for-dev/Makefile
dannc c1db6005be bump php 8.1, 8.2. Move composer version to .env
remove default composer version from dockerfiles, update readme
2023-11-17 11:12:28 +07:00

21 lines
710 B
Makefile

#!make
include .env
build-72:
cd ./v7.2 && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:7.2 `pwd`
build-73:
cd ./v7.3 && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:7.3 `pwd`
build-74:
cd ./v7.4 && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:7.4 `pwd`
build-80:
cd ./v8.0 && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.0 `pwd`
build-81:
cd ./v8.x && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.1 `pwd`
build-82:
cd ./v8.x && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.2 `pwd`