diff --git a/php/php83/Dockerfile b/php/php83/Dockerfile index 64c4aece..95985aa1 100644 --- a/php/php83/Dockerfile +++ b/php/php83/Dockerfile @@ -2,7 +2,7 @@ FROM gcr.io/gcp-runtimes/ubuntu_20_0_4 ENV PHP_DIR=/opt/php83 ENV PHP_SRC_DIR=/usr/local/src/php83-build ENV PATH=${PATH}:/usr/local/bin:${PHP_DIR}/bin -ENV PHP_VERISON=8.3.7 +ENV PHP_VERSION=8.3.7 RUN apt-get update && \ apt-get -y install \ @@ -45,10 +45,10 @@ RUN apt purge -y php7.4-common RUN ln -s /usr/lib/libc-client.a /usr/lib/x86_64-linux-gnu/libc-client.a && \ mkdir -p ${PHP_DIR} ${PHP_SRC_DIR} ${PHP_DIR}/lib/conf.d && \ cd ${PHP_SRC_DIR} && \ - wget http://us1.php.net/get/php-$PHP_VERISON.tar.bz2/from/this/mirror \ - -O php-$PHP_VERISON.tar.bz2 && \ - tar jxf php-$PHP_VERISON.tar.bz2 && \ - cd php-$PHP_VERISON && \ + wget http://us1.php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror \ + -O php-$PHP_VERSION.tar.bz2 && \ + tar jxf php-$PHP_VERSION.tar.bz2 && \ + cd php-$PHP_VERSION && \ ./configure \ --prefix=${PHP_DIR} \ --with-config-file-scan-dir=${PHP_DIR}/lib/conf.d \