diff --git a/Dockerfile b/Dockerfile index d413e47..8245eff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -194,6 +194,7 @@ RUN \ libjxl-dev \ libavif \ libheif \ + libwebp \ imagemagick-heic \ zlib-dev \ libpng-dev \ diff --git a/tests.yaml b/tests.yaml index 4652dfb..b68e42d 100644 --- a/tests.yaml +++ b/tests.yaml @@ -17,7 +17,7 @@ commandTests: command: "docker" args: ["--version"] expectedOutput: ["Docker version 28.*"] - - name: 'PHP info' + - name: 'PHP modules' command: "php" args: ["-m"] expectedOutput: @@ -71,6 +71,11 @@ commandTests: - yaml - zlib - zstd + - name: 'ImageMagick supported formats' + command: "php" + args: ["-i"] + expectedOutput: + - "ImageMagick supported formats .*WEBP.*" - name: 'PHP intl' command: "php" args: ["-r", 'print(\Normalizer::FORM_D);']