summaryrefslogtreecommitdiffstats
path: root/Dockerfile-alpine.template
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2023-03-21 18:45:38 +0000
committerGitHub <noreply@github.com>2023-03-21 18:45:38 +0000
commit321d0b29a0dbf40254e63b598da40f8cae75f1f4 (patch)
tree21611606785f687257f4f1f4e9d5b163143959bc /Dockerfile-alpine.template
parent287f6ddc866e225410949eacbfb423098966a17e (diff)
Remove EOL 23 (#1951)
* Remove EOL 23 Signed-off-by: J0WI <J0WI@users.noreply.github.com> * Clenaup GMP extension installation Signed-off-by: J0WI <J0WI@users.noreply.github.com> --------- Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'Dockerfile-alpine.template')
-rw-r--r--Dockerfile-alpine.template16
1 files changed, 8 insertions, 8 deletions
diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template
index a78a76c1..dffd36ab 100644
--- a/Dockerfile-alpine.template
+++ b/Dockerfile-alpine.template
@@ -4,8 +4,8 @@ FROM php:%%PHP_VERSION%%-%%VARIANT%%3.16
RUN set -ex; \
\
apk add --no-cache \
- rsync \
imagemagick \
+ rsync \
; \
\
rm /var/spool/cron/crontabs/root; \
@@ -19,20 +19,20 @@ RUN set -ex; \
$PHPIZE_DEPS \
autoconf \
freetype-dev \
+ gmp-dev \
icu-dev \
+ imagemagick-dev \
libevent-dev \
libjpeg-turbo-dev \
libmcrypt-dev \
- libpng-dev \
libmemcached-dev \
+ libpng-dev \
+ libwebp-dev \
libxml2-dev \
libzip-dev \
openldap-dev \
pcre-dev \
postgresql-dev \
- imagemagick-dev \
- libwebp-dev \
- gmp-dev \
; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
@@ -41,6 +41,7 @@ RUN set -ex; \
bcmath \
exif \
gd \
+ gmp \
intl \
ldap \
opcache \
@@ -48,20 +49,19 @@ RUN set -ex; \
pdo_mysql \
pdo_pgsql \
zip \
- gmp \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-%%APCU_VERSION%%; \
+ pecl install imagick-%%IMAGICK_VERSION%%; \
pecl install memcached-%%MEMCACHED_VERSION%%; \
pecl install redis-%%REDIS_VERSION%%; \
- pecl install imagick-%%IMAGICK_VERSION%%; \
\
docker-php-ext-enable \
apcu \
+ imagick \
memcached \
redis \
- imagick \
; \
rm -r /tmp/pear; \
\