From ac801a0949fa23da7284174d4ab08d76a54148d0 Mon Sep 17 00:00:00 2001 From: Derek Belrose Date: Tue, 21 Jun 2016 01:35:44 -0400 Subject: [PATCH] Adding bcmath php module This installs the php extension bcmath so that it is possible to use libraries such as phpamqplib --- base/Dockerfile | 2 +- base/alpine/Dockerfile | 2 +- base/php5-alpine/Dockerfile | 2 +- base/php5/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base/Dockerfile b/base/Dockerfile index 72104e3..1c318b0 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -22,7 +22,7 @@ RUN apt-get update && \ && rm -r /var/lib/apt/lists/* # PHP Extensions -RUN docker-php-ext-install mcrypt zip bz2 mbstring pcntl xsl \ +RUN docker-php-ext-install bcmath mcrypt zip bz2 mbstring pcntl xsl \ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-install gd \ && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \ diff --git a/base/alpine/Dockerfile b/base/alpine/Dockerfile index 92b5d7e..edb4de0 100644 --- a/base/alpine/Dockerfile +++ b/base/alpine/Dockerfile @@ -21,7 +21,7 @@ RUN apk --update add \ make \ unzip \ wget && \ - docker-php-ext-install mcrypt zip bz2 mbstring pcntl xsl && \ + docker-php-ext-install bcmath mcrypt zip bz2 mbstring pcntl xsl && \ docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \ docker-php-ext-install gd && \ docker-php-ext-configure ldap --with-libdir=lib/ && \ diff --git a/base/php5-alpine/Dockerfile b/base/php5-alpine/Dockerfile index 113f8b2..0b111f8 100644 --- a/base/php5-alpine/Dockerfile +++ b/base/php5-alpine/Dockerfile @@ -22,7 +22,7 @@ RUN apk --update add \ php5-pear \ unzip \ wget && \ - docker-php-ext-install mcrypt zip bz2 mbstring pcntl xsl && \ + docker-php-ext-install bcmath mcrypt zip bz2 mbstring pcntl xsl && \ docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \ docker-php-ext-install gd && \ docker-php-ext-configure ldap --with-libdir=lib/ && \ diff --git a/base/php5/Dockerfile b/base/php5/Dockerfile index 8ff4d42..c1a0c33 100644 --- a/base/php5/Dockerfile +++ b/base/php5/Dockerfile @@ -22,7 +22,7 @@ RUN apt-get update && \ && rm -r /var/lib/apt/lists/* # PHP Extensions -RUN docker-php-ext-install mcrypt zip bz2 mbstring pcntl xsl \ +RUN docker-php-ext-install bcmath mcrypt zip bz2 mbstring pcntl xsl \ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-install gd \ && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \