Skip to content

Commit

Permalink
[Fix]Extension check introduced for Docker builds
Browse files Browse the repository at this point in the history
Update Dockerfile to install the `mysqli` PHP extension, resolving the required extensions check introduced in PR cypht-org#1251 for Docker builds.
  • Loading branch information
goldenmean58 authored Sep 28, 2024
1 parent a31aad7 commit 92bc1f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN set -e \
ca-certificates \
libpng-dev libjpeg-turbo-dev freetype-dev \
&& docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ \
&& docker-php-ext-install gd pdo pdo_mysql \
&& docker-php-ext-install gd pdo pdo_mysql mysqli \
&& curl -sSL https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions -o - | sh -s \
xdebug redis gnupg memcached \
&& composer self-update --2 \
Expand Down

0 comments on commit 92bc1f2

Please sign in to comment.