From 131bd270efc9218ebd156bc1a1f5834ff20d33c0 Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Mon, 7 Apr 2025 10:08:24 -0400 Subject: [PATCH] add exif and exiftool close #82 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7e410c..88dcc5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,14 +17,16 @@ RUN apt-get update && apt-get install -y \ inotify-tools \ imagemagick libmagickwand-dev --no-install-recommends \ ffmpeg \ + exiftool \ && a2enmod rewrite && a2enmod ssl && a2enmod socache_shmcb \ && docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp=/usr/include/ \ && docker-php-ext-configure opcache --enable-opcache \ && docker-php-ext-configure ftp --with-openssl-dir=/usr \ + && docker-php-ext-configure exif \ && docker-php-ext-install -j$(nproc) exif gd pdo_mysql zip opcache bcmath ftp intl \ && pecl install imagick \ && pecl install redis \ - && docker-php-ext-enable imagick opcache redis \ + && docker-php-ext-enable exif imagick opcache redis \ && php -m RUN echo "sendmail_path=/usr/sbin/sendmail -t -i" >> /usr/local/etc/php/conf.d/sendmail.ini \