diff --git a/Dockerfile b/Dockerfile index ea2db9c..965c875 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,7 @@ VOLUME /app/var/ # persistent / runtime deps # hadolint ignore=DL3008 RUN apt-get update && apt-get install -y --no-install-recommends \ - acl \ file \ - gettext \ libicu-dev \ libzip-dev \ unzip \ diff --git a/frankenphp/docker-entrypoint.sh b/frankenphp/docker-entrypoint.sh index a2931f2..c8787ba 100755 --- a/frankenphp/docker-entrypoint.sh +++ b/frankenphp/docker-entrypoint.sh @@ -55,9 +55,6 @@ if [ "$1" = 'frankenphp' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then php bin/console lexik:jwt:generate-keypair || true php bin/console app:update-rdap-servers - - setfacl -R -m u:www-data:rwX -m u:"$(whoami)":rwX var - setfacl -dR -m u:www-data:rwX -m u:"$(whoami)":rwX var fi exec docker-php-entrypoint "$@"