From c9eba55118198bc43334de1bfb0a57370da34c2d Mon Sep 17 00:00:00 2001 From: Stephan de Souza Date: Fri, 15 Jan 2021 09:47:55 -0300 Subject: [PATCH 1/2] Make Dockerfile compatible with PHPUnit 9 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 360f67e66..145947057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION=7.2 -ARG COMPOSER_VERSION=1.8 +ARG PHP_VERSION=7.3 +ARG COMPOSER_VERSION=2.0 FROM composer:${COMPOSER_VERSION} FROM php:${PHP_VERSION}-cli From 495b74447322a02a33c021bc0cb055b84187e8aa Mon Sep 17 00:00:00 2001 From: Stephan de Souza Date: Wed, 20 Jan 2021 19:27:06 -0300 Subject: [PATCH 2/2] Bumping PHP to 7.4 Co-authored-by: Divine <48183131+divine@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 145947057..e8b6b4d2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG PHP_VERSION=7.3 +ARG PHP_VERSION=7.4 ARG COMPOSER_VERSION=2.0 FROM composer:${COMPOSER_VERSION}