From fc5cf93ec16685251f7c50b642fe8360b93389f9 Mon Sep 17 00:00:00 2001 From: Draconis Date: Thu, 19 Dec 2024 06:51:16 +0100 Subject: [PATCH] php extension bcmath --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a2f9b7..8a31f87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,11 +12,12 @@ RUN apt-get update -qq && \ git \ gnupg \ unzip \ + zlib1g \ zip && \ apt-get clean && rm -rf /var/lib/apt/lists/* /var/log/* # PHP Extensions -RUN docker-php-ext-install -j$(nproc) opcache gd bcmath +RUN docker-php-ext-install -j$(nproc) bcmath COPY --link conf/php.ini /usr/local/etc/php/conf.d/app.ini # Apache