diff --git a/.changes/2.13.4.md b/.changes/2.13.4.md new file mode 100644 index 0000000..78fe093 --- /dev/null +++ b/.changes/2.13.4.md @@ -0,0 +1,3 @@ +## 2.13.4 - 2026-09-17 +### DX +* Fix Dockerfile permissions to be able to write to the whole /var/www/app/ directory diff --git a/CHANGELOG.md b/CHANGELOG.md index c51fe35..9990e9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 2.13.4 - 2026-09-17 +### DX +* Fix Dockerfile permissions to be able to write to the whole /var/www/app/ directory + ## 2.13.3 - 2026-09-17 ### DX * Upgrade to php version 8.4 in Dockerfile diff --git a/Dockerfile b/Dockerfile index 83f5fb4..7b6b20e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -97,8 +97,8 @@ ADD ./entrypoint.sh /. RUN chmod +x /entrypoint.sh RUN mkdir -p /var/www/app/var/cache /var/www/app/var/log && \ - chown -R 82:82 /var/www/app/var && \ - chmod -R 755 /var/www/app/var && \ + chown -R 82:82 /var/www/app && \ + chmod -R 755 /var/www/app && \ chown -R 82:82 /usr/local/etc/php/conf.d && \ chmod -R 755 /usr/local/etc/php/conf.d