From 6190dbc5c26191498a1a140efc5f66c6104f6d7b Mon Sep 17 00:00:00 2001 From: K Date: Thu, 9 Sep 2021 18:18:53 +0200 Subject: [PATCH] bullseye + bcmath,gmp --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fcfc70a..a64a744 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM php:8.0.10-fpm-buster +FROM php:8.0.10-fpm-bullseye RUN apt-get update && \ apt-get -y --no-install-recommends install \ libbz2-dev \ libfreetype6-dev \ + libgmp-dev \ libicu-dev \ libjpeg-dev \ libmagickwand-dev \ @@ -19,9 +20,11 @@ RUN printf "\n" | pecl install imagick RUN docker-php-ext-enable imagick RUN docker-php-ext-install -j$(nproc) \ + bcmath \ bz2 \ exif \ gd \ + gmp \ intl \ mysqli \ pdo_mysql \