bump php 8.1, 8.2. Move composer version to .env

remove default composer version from dockerfiles, update readme
This commit is contained in:
2023-11-17 11:12:28 +07:00
parent 77f3bc2196
commit c1db6005be
9 changed files with 23 additions and 22 deletions

View File

@@ -1,17 +1,20 @@
#!make
include .env
build-72:
cd ./v7.2 && docker build --tag=php-for-dev:7.2 `pwd`
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 --tag=php-for-dev:7.3 `pwd`
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 --tag=php-for-dev:7.4 `pwd`
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 --tag=php-for-dev:8.0 `pwd`
cd ./v8.0 && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.0 `pwd`
build-81:
cd ./v8.1 && docker build --tag=php-for-dev:8.1 `pwd`
cd ./v8.x && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.1 `pwd`
build-82:
cd ./v8.2 && docker build --tag=php-for-dev:8.2 `pwd`
cd ./v8.x && docker build --build-arg COMPOSER_VERSION=${COMPOSER_VERSION} --tag=php-for-dev:8.2 `pwd`