File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ jobs:
1313 env :
1414 - PHP_IMAGE : php:7.1-cli
1515 - PHP_IMAGE : php:7.2-cli
16-
1716 - PHP_IMAGE : php:7.3-cli
18- QA : 1
1917
2018 - PHP_IMAGE : php:7.4-cli
2119 COVERAGE_FILE : coverage.clover
2220
2321 - PHP_IMAGE : php:8.0-cli
22+ QA : 1
23+
24+ - PHP_IMAGE : php:8.1-cli
2425
2526 runs-on : ${{ matrix.operating-system }}
2627 steps :
Original file line number Diff line number Diff line change @@ -413,11 +413,11 @@ container. First, create a container:
413413./dockerfile.sh | docker build -t msgpack -
414414```
415415
416- The command above will create a container named ` msgpack ` with PHP 8.0 runtime.
416+ The command above will create a container named ` msgpack ` with PHP 8.1 runtime.
417417You may change the default runtime by defining the ` PHP_IMAGE ` environment variable:
418418
419419``` sh
420- PHP_IMAGE=' php:7.4 -cli' ./dockerfile.sh | docker build -t msgpack -
420+ PHP_IMAGE=' php:8.0 -cli' ./dockerfile.sh | docker build -t msgpack -
421421```
422422
423423> * See a list of various images [ here] ( https://hub.docker.com/_/php ) .*
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33if [[ -z " $PHP_IMAGE " ]]; then
4- PHP_IMAGE=' php:8.0 -cli'
4+ PHP_IMAGE=' php:8.1 -cli'
55fi
66
77RUN_CMDS=' '
You can’t perform that action at this time.
0 commit comments