2023-12-09 20:19:42 +01:00
|
|
|
FROM php:8.1-cli
|
2023-09-28 17:48:25 +02:00
|
|
|
|
2024-01-14 10:49:20 +01:00
|
|
|
# install dependencies
|
2023-09-28 17:48:25 +02:00
|
|
|
RUN apt update \
|
|
|
|
&& apt install -y \
|
|
|
|
libmagickwand-dev \
|
|
|
|
libwebp-dev \
|
2024-01-14 10:49:20 +01:00
|
|
|
libpng-dev \
|
|
|
|
libavif-dev \
|
2023-09-28 17:48:25 +02:00
|
|
|
&& pecl install imagick \
|
2024-01-14 10:49:20 +01:00
|
|
|
&& pecl install xdebug \
|
2023-10-03 17:24:52 +02:00
|
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-avif \
|
2024-01-14 10:49:20 +01:00
|
|
|
&& docker-php-ext-enable \
|
|
|
|
imagick \
|
|
|
|
xdebug \
|
2023-09-28 17:48:25 +02:00
|
|
|
&& docker-php-ext-install \
|
|
|
|
gd \
|
|
|
|
exif \
|
|
|
|
&& apt-get clean
|
|
|
|
|
|
|
|
# install composer
|
2024-01-14 10:49:20 +01:00
|
|
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|