Update 8.3-rc to 8.3.7RC1

This commit is contained in:
Docker Library Bot
2024-04-25 20:51:52 -07:00
parent 66a2b003aa
commit 32773dba07
87 changed files with 8776 additions and 1 deletions

34
8.3-rc/alpine3.19/cli/docker-php-source generated Executable file
View File

@ -0,0 +1,34 @@
#!/bin/sh
set -e
dir=/usr/src/php
usage() {
echo "usage: $0 COMMAND"
echo
echo "Manage php source tarball lifecycle."
echo
echo "Commands:"
echo " extract extract php source tarball into directory $dir if not already done."
echo " delete delete extracted php source located into $dir if not already done."
echo
}
case "$1" in
extract)
mkdir -p "$dir"
if [ ! -f "$dir/.docker-extracted" ]; then
tar -Jxf /usr/src/php.tar.xz -C "$dir" --strip-components=1
touch "$dir/.docker-extracted"
fi
;;
delete)
rm -rf "$dir"
;;
*)
usage
exit 1
;;
esac