We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe888d commit 7ebded8Copy full SHA for 7ebded8
php84/Dockerfile
@@ -32,7 +32,12 @@ WORKDIR /var/dev
32
33
## Install Ext
34
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
35
-RUN install-php-extensions soap pcntl bcmath gd exif sockets zip xdebug redis intl pdo_pgsql pgsql pdo_mysql mysqli
+RUN install-php-extensions soap pcntl bcmath gd exif sockets zip xdebug redis intl pdo_pgsql pgsql pdo_mysql mysqli imagick curl fileinfo xml mbstring sodium bcmath
36
+
37
+# Install WP-CLI
38
+RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
39
+ chmod +x wp-cli.phar && \
40
+ mv wp-cli.phar /usr/local/bin/wp
41
42
USER csdev
43
0 commit comments