Fix tests on Docker by adding missing WebP support

This commit is contained in:
Yassine Guedidi 2022-05-03 07:06:15 +02:00
parent 2ae3ef12af
commit d988065148

View file

@ -22,6 +22,7 @@ RUN apt-get update && apt-get install -y \
libxml2-dev \ libxml2-dev \
libpng-dev \ libpng-dev \
libjpeg-dev \ libjpeg-dev \
libwebp-dev \
libsqlite3-dev \ libsqlite3-dev \
imagemagick \ imagemagick \
libmagickwand-dev \ libmagickwand-dev \
@ -33,7 +34,7 @@ RUN apt-get update && apt-get install -y \
git \ git \
build-essential \ build-essential \
nodejs nodejs
RUN docker-php-ext-configure gd --with-freetype --with-jpeg RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp
RUN docker-php-ext-install -j "$(nproc)" \ RUN docker-php-ext-install -j "$(nproc)" \
bcmath \ bcmath \
gd \ gd \