diff --git a/runtime/base/php-73.Dockerfile b/runtime/base/php-73.Dockerfile index bb0bb8f0a..3916001d8 100644 --- a/runtime/base/php-73.Dockerfile +++ b/runtime/base/php-73.Dockerfile @@ -13,7 +13,7 @@ FROM bref/tmp/step-1/build-environment as build-environment -ENV VERSION_PHP=7.3.24 +ENV VERSION_PHP=7.3.25 ENV PHP_BUILD_DIR=${BUILD_DIR}/php RUN set -xe; \ diff --git a/runtime/base/php-74.Dockerfile b/runtime/base/php-74.Dockerfile index 04da56095..4c30403f4 100644 --- a/runtime/base/php-74.Dockerfile +++ b/runtime/base/php-74.Dockerfile @@ -36,7 +36,7 @@ RUN set -xe; \ make install -ENV VERSION_PHP=7.4.12 +ENV VERSION_PHP=7.4.13 ENV PHP_BUILD_DIR=${BUILD_DIR}/php diff --git a/runtime/base/php-80.Dockerfile b/runtime/base/php-80.Dockerfile index c35c1e194..f9487c016 100644 --- a/runtime/base/php-80.Dockerfile +++ b/runtime/base/php-80.Dockerfile @@ -36,7 +36,7 @@ RUN set -xe; \ make install -ENV VERSION_PHP=8.0.0RC5 +ENV VERSION_PHP=8.0.0 ENV PHP_BUILD_DIR=${BUILD_DIR}/php @@ -46,7 +46,7 @@ RUN set -xe; \ # --location will follow redirects # --silent will hide the progress, but also the errors: we restore error messages with --show-error # --fail makes sure that curl returns an error instead of fetching the 404 page - curl --location --silent --show-error --fail https://downloads.php.net/~carusogabriel/php-${VERSION_PHP}.tar.gz \ + curl --location --silent --show-error --fail https://www.php.net/get/php-${VERSION_PHP}.tar.gz/from/this/mirror \ | tar xzC ${PHP_BUILD_DIR} --strip-components=1 # Move into the unpackaged code directory WORKDIR ${PHP_BUILD_DIR}/