This commit is contained in:
2021-01-25 19:04:16 +01:00
parent d1f48c46a6
commit adb0395924
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM php:7.3.26-fpm-stretch
FROM php:7.4.14-fpm-buster
RUN apt-get update && \
apt-get -y --no-install-recommends install \
@@ -14,7 +14,7 @@ RUN apt-get update && \
&& \
rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/
RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp
RUN printf "\n" | pecl install imagick
RUN docker-php-ext-enable imagick

View File

@@ -1,2 +1,2 @@
# docker-php-fpm-ext
PHP 7.3 FPM with custom extensions
PHP 7.4 FPM with custom extensions