From b17de3febba9dc6c75042810c57bff43fef70da7 Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Tue, 15 Jun 2021 14:49:43 -0400 Subject: [PATCH 1/2] Fixed typo in Dockerfile that would cause the PHP container to not build --- docker-config/php-prod-craft/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-config/php-prod-craft/Dockerfile b/docker-config/php-prod-craft/Dockerfile index e86f205..29b74b8 100755 --- a/docker-config/php-prod-craft/Dockerfile +++ b/docker-config/php-prod-craft/Dockerfile @@ -67,7 +67,7 @@ WORKDIR /var/www/project/cms # when working with teams or multiple environments CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \ && \ - chown -R www-data:www-data /var/www/project + chown -R www-data:www-data /var/www/project \ && \ composer craft-update \ && \ From 21f485897968f853b28c64803cc8ae6f9f58630c Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Tue, 15 Jun 2021 14:49:50 -0400 Subject: [PATCH 2/2] Version 2.4.41 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a2bae6..aa6a127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # nystudio107/craft Change Log +## 2.4.41 - 2021.06.15 +### Fixed +* Fixed typo in Dockerfile that would cause the PHP container to not build + ## 2.4.40 - 2021.06.15 ### Changed * Removed `USER` directive in the PHP containers, since the pool runs as `www-data` already