Skip to content

Commit

Permalink
fix php-redis now install using pecl
Browse files Browse the repository at this point in the history
  • Loading branch information
muhajirinlpu committed Nov 25, 2023
1 parent 3983e64 commit 0fa80da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ RUN apt-get update \
php8.3-imap php8.3-mysql php8.3-mbstring \
php8.3-xml php8.3-zip php8.3-bcmath php8.3-soap \
php8.3-intl php8.3-readline \
php8.3-ldap php8.3-redis \
php8.3-ldap \
&& pecl install igbinary redis \
&& rm -rf /tmp/pear \
&& echo "extension=igbinary.so" > /etc/php/8.3/cli/conf.d/20-igbinary.ini \
&& echo "extension=redis.so" > /etc/php/8.3/cli/conf.d/20-redis.ini \
&& phpenmod igbinary redis \
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& composer global require --quiet --no-ansi laravel/envoy \
&& composer clear-cache --quiet \
Expand Down

0 comments on commit 0fa80da

Please sign in to comment.