mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-01-21 12:53:56 +08:00
13 lines
634 B
Plaintext
Executable File
13 lines
634 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
source /etc/lsb-release
|
|
if [ ! -f "/etc/apt/sources.list.d/php8source.list" ]; then
|
|
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c" | gpg --dearmor | tee /usr/share/keyrings/php8.gpg >/dev/null
|
|
echo "deb [signed-by=/usr/share/keyrings/php8.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu ${DISTRIB_CODENAME} main" \
|
|
> /etc/apt/sources.list.d/php8source.list
|
|
echo "**** Adding php8.2 and composer to package install list ****"
|
|
echo "\
|
|
php8.2 \
|
|
composer" >> /mod-repo-packages-to-install.list
|
|
fi
|