This commit is contained in:
Robin Appelman 2024-02-22 14:28:53 +01:00
commit b6668e0f52
3 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
php-versions: ['8.0', '8.1', '8.2'] php-versions: ['8.0', '8.1', '8.2', '8.3']
variant: ['cli', 'apache', 'fpm'] variant: ['cli', 'apache', 'fpm']
steps: steps:
@ -45,4 +45,4 @@ jobs:
with: with:
context: php/${{ matrix.php-versions }}/bullseye/${{ matrix.variant }} context: php/${{ matrix.php-versions }}/bullseye/${{ matrix.variant }}
push: true push: true
tags: icewind1991/php-dbg:${{ matrix.php-versions }}-${{ matrix.variant }} tags: icewind1991/php-dbg:${{ matrix.php-versions }}-${{ matrix.variant }}

View file

@ -6,8 +6,8 @@ Docker images for php with debug symbols included
PHP docker images based on the official ones but with debug symbols included. PHP docker images based on the official ones but with debug symbols included.
Currently only has debian based images for 8.0, 8.1 and 8.2 Currently only has debian based images for 8.0, 8.1, 8.2 and 8.3
## Where ## Where
https://hub.docker.com/r/icewind1991/php-dbg https://hub.docker.com/r/icewind1991/php-dbg

View file

@ -7,10 +7,10 @@ fi
patch -N -p1 -d php < debug.patch patch -N -p1 -d php < debug.patch
patch -N -p1 -d php < version.patch patch -N -p1 -d php < version.patch
versions=("8.0" "8.1" "8.2") versions=("8.0" "8.1" "8.2" "8.3")
cd php; ./apply-templates.sh cd php; ./apply-templates.sh
for version in "${versions[@]}"; do for version in "${versions[@]}"; do
docker build -t icewind1991/php-debug:$version-fpm -f php/$version/bullseye/fpm/Dockerfile php/$version/bullseye/fpm docker build -t icewind1991/php-debug:$version-fpm -f php/$version/bullseye/fpm/Dockerfile php/$version/bullseye/fpm
done done