Fix extension chmod command on empty dir

This commit is contained in:
cytopia
2022-12-08 11:01:13 +01:00
parent 725f52eda8
commit 5b41a9b2f7
14 changed files with 14 additions and 14 deletions

View File

@@ -52,7 +52,7 @@ RUN set -eux \
# Fix php.ini settings for enabled extensions
RUN set -eux \
&& chmod +x "$(php -r 'echo ini_get("extension_dir");')"/*
&& find "$(php -r 'echo ini_get("extension_dir");')/" -type f -exec chmod +x {} \;
# Fix oracle dir for images that don't have oci installed
RUN set -eux \