From 879df6c0420f72ef11cb00aa4e045bae5cb48d7b Mon Sep 17 00:00:00 2001 From: xZero707 Date: Tue, 21 Mar 2023 02:12:31 +0100 Subject: [PATCH] Update tests and patch-util Docker image to use PHP 8.1 --- build/patch-util/Dockerfile | 8 ++++---- build/tests-util/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/patch-util/Dockerfile b/build/patch-util/Dockerfile index 6e4caec..e455e06 100644 --- a/build/patch-util/Dockerfile +++ b/build/patch-util/Dockerfile @@ -1,4 +1,4 @@ -FROM wordpress:cli-php7.4 AS wordpress-builder +FROM wordpress:cli-php8.1 AS wordpress-builder USER root @@ -7,8 +7,8 @@ WORKDIR "/wp" ENV UID 1000 ENV GID 1000 -ENV WP_LOCALE "en_US" -ARG WP_VERSION "5.8.0" -ENV WP_VERSION "${WP_VERSION}" +ENV WP_LOCALE="en_US" +ARG WP_VERSION="6.0.2" +ENV WP_VERSION="${WP_VERSION}" ENTRYPOINT ["/wp/entrypoint.sh"] diff --git a/build/tests-util/Dockerfile b/build/tests-util/Dockerfile index 23f5207..637aaa1 100644 --- a/build/tests-util/Dockerfile +++ b/build/tests-util/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=7.4 +ARG PHP_VERSION=8.1 ARG WP_VERSION=6.0.2