From 5720d9376ba9b1652ff3a3ff429b5b654ec9afb7 Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Tue, 13 Apr 2021 19:07:06 +0300 Subject: [PATCH] * bcmath install bash-syntax fix --- dockerfiles/php-fpm/php.base.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/php-fpm/php.base.Dockerfile b/dockerfiles/php-fpm/php.base.Dockerfile index cbda302..514a41b 100644 --- a/dockerfiles/php-fpm/php.base.Dockerfile +++ b/dockerfiles/php-fpm/php.base.Dockerfile @@ -102,7 +102,7 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ ARG INSTALL_BCMATH=false RUN if [ ${INSTALL_BCMATH} = true ]; then \ - && docker-php-ext-install bcmath \ + docker-php-ext-install bcmath \ ;fi ###########################################################################