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 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 \ && \