From 30e61911e61408f925c572ce687fa0eeb3d8810b Mon Sep 17 00:00:00 2001 From: Bruno Magrini Date: Fri, 23 Apr 2021 15:42:52 -0300 Subject: [PATCH] Add imagick soap and other modules --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Dockerfile b/Dockerfile index 48e1009..cecbce1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,20 @@ MAINTAINER Hacklab ARG WP_VERSION=5.3.2 COPY root/ / +RUN apt-get update +RUN apt-get -y install libmagickwand-dev --no-install-recommends +RUN printf "\n" | pecl install imagick +RUN docker-php-ext-enable imagick +RUN rm -r /var/lib/apt/lists/* +RUN apt-get install -y libxml2-dev +RUN docker-php-ext-install soap + +RUN apt-get -yqq update +RUN apt-get -yqq install exiftool +RUN docker-php-ext-configure exif +RUN docker-php-ext-install exif +RUN docker-php-ext-enable exif + RUN a2enmod headers \ && docker-php-ext-install pdo_mysql sockets \ && printf "no\n" | pecl install redis \