Skip to content

Commit

Permalink
drop Imagick support in Alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
schuer authored and Dirk Schürjohann committed Jul 29, 2020
1 parent d37f8d0 commit 214d11e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 28 deletions.
7 changes: 0 additions & 7 deletions php7.2/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM php:7.2-fpm-alpine
# install persistent PHP extensions (they won't get purged afterwards)
RUN apk add --no-cache \
bash \
ghostscript \
# add perl-utils to include shasum
perl-utils \
sed \
Expand All @@ -17,7 +16,6 @@ RUN set -ex; \
freetype-dev \
# add icu-dev to be able to install intl extension
icu-dev \
imagemagick-dev \
libjpeg-turbo-dev \
libpng-dev \
; \
Expand All @@ -34,11 +32,6 @@ RUN set -ex; \
> /dev/null \
; \
\
# install imagick
mkdir -p /usr/src/php/ext/imagick; \
curl -fsSL https://pecl.php.net/get/imagick | tar xvz -C "/usr/src/php/ext/imagick" --strip 1; \
docker-php-ext-install imagick; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
Expand Down
7 changes: 0 additions & 7 deletions php7.3/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM php:7.3-fpm-alpine
# install persistent PHP extensions (they won't get purged afterwards)
RUN apk add --no-cache \
bash \
ghostscript \
# add perl-utils to include shasum
perl-utils \
sed \
Expand All @@ -17,7 +16,6 @@ RUN set -ex; \
freetype-dev \
# add icu-dev to be able to install intl extension
icu-dev \
imagemagick-dev \
libjpeg-turbo-dev \
libpng-dev \
libzip-dev \
Expand All @@ -35,11 +33,6 @@ RUN set -ex; \
> /dev/null \
; \
\
# install imagick
mkdir -p /usr/src/php/ext/imagick; \
curl -fsSL https://pecl.php.net/get/imagick | tar xvz -C "/usr/src/php/ext/imagick" --strip 1; \
docker-php-ext-install imagick; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
Expand Down
7 changes: 0 additions & 7 deletions php7.4/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM php:7.4-fpm-alpine
# install persistent PHP extensions (they won't get purged afterwards)
RUN apk add --no-cache \
bash \
ghostscript \
# add perl-utils to include shasum
perl-utils \
sed \
Expand All @@ -17,7 +16,6 @@ RUN set -ex; \
freetype-dev \
# add icu-dev to be able to install intl extension
icu-dev \
imagemagick-dev \
libjpeg-turbo-dev \
libpng-dev \
libzip-dev \
Expand All @@ -35,11 +33,6 @@ RUN set -ex; \
> /dev/null \
; \
\
# install imagick
mkdir -p /usr/src/php/ext/imagick; \
curl -fsSL https://pecl.php.net/get/imagick | tar xvz -C "/usr/src/php/ext/imagick" --strip 1; \
docker-php-ext-install imagick; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
Expand Down
7 changes: 0 additions & 7 deletions templates/Dockerfile-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM php:%%PHP_VERSION%%-%%VARIANT%%
# install persistent PHP extensions (they won't get purged afterwards)
RUN apk add --no-cache \
bash \
ghostscript \
# add perl-utils to include shasum
perl-utils \
sed \
Expand All @@ -17,7 +16,6 @@ RUN set -ex; \
freetype-dev \
# add icu-dev to be able to install intl extension
icu-dev \
imagemagick-dev \
libjpeg-turbo-dev \
libpng-dev \
libzip-dev \
Expand All @@ -35,11 +33,6 @@ RUN set -ex; \
> /dev/null \
; \
\
# install imagick
mkdir -p /usr/src/php/ext/imagick; \
curl -fsSL https://pecl.php.net/get/imagick | tar xvz -C "/usr/src/php/ext/imagick" --strip 1; \
docker-php-ext-install imagick; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
Expand Down

0 comments on commit 214d11e

Please sign in to comment.