feat: Add mysqli
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lennard Brinkhaus 2022-09-11 00:27:42 +02:00
parent ae1c3c7747
commit 25c0723a19
Signed by: lennard.brinkhaus
GPG Key ID: 286421EC53998B22

View File

@ -200,11 +200,15 @@ RUN set -eux; \
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-php-ext-enable
RUN chmod +x /usr/local/bin/docker-php-ext-install
RUN chmod +x /usr/local/bin/docker-php-ext-configure
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
# sodium was built as a shared module (so that it can be replaced later if so desired), so let's enable it too (https://github.com/docker-library/php/issues/598)
RUN docker-php-ext-enable sodium
ENTRYPOINT ["docker-php-entrypoint"]
WORKDIR /var/www/html