Default Dockerfile dev build:
➜ : docker compose build --pull --no-cache
➜ : docker compose run --rm php php -r 'phpinfo();' | grep "ImageMagick number of supported formats"
ImageMagick number of supported formats: => 271
Default Dockerfile prod build:
➜ : docker compose -f compose.yaml -f compose.prod.yaml build --pull --no-cache
➜ : docker compose -f compose.yaml -f compose.prod.yaml run --rm php php -r 'phpinfo();' | grep 'ImageMagick number of supported formats'
ImageMagick number of supported formats: => 0
I tried copying the entire /usr/lib directory, but it didn't help.
Any ideas on how to fix this?
Default Dockerfile dev build:
Default Dockerfile prod build:
I tried copying the entire /usr/lib directory, but it didn't help.
Any ideas on how to fix this?