mirror of
https://codeberg.org/icewind/php-dbg.git
synced 2026-06-03 17:24:09 +02:00
add 8.3
This commit is contained in:
parent
d9b24b99b7
commit
b6668e0f52
3 changed files with 6 additions and 6 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
|
@ -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 }}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
4
build.sh
4
build.sh
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue