add php8.4
All checks were successful
ci/woodpecker/push/build/4 Pipeline was successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/push/build/3 Pipeline was successful
ci/woodpecker/push/build/2 Pipeline was successful
ci/woodpecker/push/build/5 Pipeline was successful
ci/woodpecker/cron/build/1 Pipeline was successful
ci/woodpecker/cron/build/2 Pipeline was successful
ci/woodpecker/cron/build/3 Pipeline was successful
ci/woodpecker/cron/build/4 Pipeline was successful
ci/woodpecker/cron/build/5 Pipeline was successful
All checks were successful
ci/woodpecker/push/build/4 Pipeline was successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/push/build/3 Pipeline was successful
ci/woodpecker/push/build/2 Pipeline was successful
ci/woodpecker/push/build/5 Pipeline was successful
ci/woodpecker/cron/build/1 Pipeline was successful
ci/woodpecker/cron/build/2 Pipeline was successful
ci/woodpecker/cron/build/3 Pipeline was successful
ci/woodpecker/cron/build/4 Pipeline was successful
ci/woodpecker/cron/build/5 Pipeline was successful
This commit is contained in:
parent
339533f532
commit
232a9a37b1
1 changed files with 20 additions and 0 deletions
20
Dockerfile.php8.4
Normal file
20
Dockerfile.php8.4
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
FROM debian:bullseye-slim
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y apt-transport-https ca-certificates wget \
|
||||
&& wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \
|
||||
&& sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y curl php8.4-apcu php8.4-bcmath php8.4-bz2 php8.4-cli php8.4-common php8.4-curl php8.4-fpm php8.4-gd php8.4-gmp php8.4-igbinary php8.4-imagick php8.4-imap php8.4-intl php8.4-mailparse php8.4-mbstring php8.4-memcached php8.4-mongodb php8.4-msgpack php8.4-mysql php8.4-opcache php8.4-pgsql php8.4-raphf php8.4-readline php8.4-redis php8.4-soap php8.4-sqlite3 php8.4-tidy php8.4-uuid php8.4-xml php8.4-xsl php8.4-yaml php8.4-zip php8.4-xmlrpc \
|
||||
&& php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
|
||||
&& php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \
|
||||
&& php composer-setup.php \
|
||||
&& php -r "unlink('composer-setup.php');" \
|
||||
&& mv composer.phar /usr/local/bin/composer \
|
||||
&& chmod +x /usr/local/bin/composer \
|
||||
&& apt-get clean
|
||||
|
||||
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | bash \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y symfony-cli \
|
||||
&& apt-get clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue