Skip to content

Commit

Permalink
Enable bcmath.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Oct 9, 2017
1 parent 45a07d7 commit 5adf278
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN docker-php-source extract \
make \
&& rm -rf /tmp/* \
&& rm -rf /var/cache/apk/* \
&& docker-php-ext-configure bcmath \
&& docker-php-ext-configure json \
&& docker-php-ext-configure session \
&& docker-php-ext-configure ctype \
Expand All @@ -29,7 +30,8 @@ RUN docker-php-source extract \
&& docker-php-ext-configure pdo_mysql \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-source delete
RUN docker-php-ext-install json \
RUN docker-php-ext-install bcmath \
json \
session \
ctype \
tokenizer \
Expand Down

0 comments on commit 5adf278

Please sign in to comment.