From 0351cf531ba41157935955d9bb6abab91d9af732 Mon Sep 17 00:00:00 2001 From: Abdelrahman Omran Date: Wed, 27 Jun 2018 12:47:42 +0200 Subject: [PATCH] Fix minor syntax issue that solves "[/bin/sh: 1: [: missing ]" error (#1649) --- php-fpm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index fd1de88..51cd169 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -203,7 +203,7 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \ ########################################################################### ARG INSTALL_PCNTL=false -RUN if [ ${INSTALL_PCNTL} = true]; then \ +RUN if [ ${INSTALL_PCNTL} = true ]; then \ # Installs pcntl, helpful for running Horizon docker-php-ext-install pcntl \ ;fi