Typo in PHP_VERSION for PHP gmp extension (#1933)

This commit is contained in:
Tomonso Ejang 2019-01-08 13:01:21 +05:30 committed by Shao Yu-Lung (Allen)
parent a1bda23cd9
commit 3e771dbcfc
1 changed files with 2 additions and 2 deletions

View File

@ -194,11 +194,11 @@ RUN if [ ${INSTALL_SSH2} = true ]; then \
USER root
ARG INSTALL_GMP=false
ARG PHP_VERSION=${PHP_VERSION}
ARG PHP_VERSION=${LARADOCK_PHP_VERSION}
RUN if [ ${INSTALL_GMP} = true ]; then \
# Install the PHP GMP extension
apt-get -y install php${PHP_VERSION}-gmp \
apt-get -y install php${LARADOCK_PHP_VERSION}-gmp \
;fi
###########################################################################