Fix PHP 5.6 Dockerfile syntax error

Syntax error: ";" unexpected
This commit is contained in:
Cosmos Pham 2016-12-20 13:20:53 +07:00 committed by GitHub
parent ea148943ed
commit 5bb515751a

View File

@ -45,7 +45,7 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
# Install the soap extension
apt-get -y update && \
apt-get -y install libxml2-dev && \
docker-php-ext-install soap && \
docker-php-ext-install soap \
;fi
#####################################