remove vips and install imagick ext

This commit is contained in:
yuriko 🦊 2025-05-25 03:06:05 -04:00
parent 2677dd5baa
commit 7ec9c4bc9d
Signed by: jaiden
SSH key fingerprint: SHA256:f8tvveBoXBrKZIQDWLLcpQrKbATUCGg98x2N4YzkDM8
2 changed files with 3 additions and 4 deletions

View file

@ -16,7 +16,7 @@ return [
| |
*/ */
'driver' => \Intervention\Image\Drivers\Vips\Driver::class, 'driver' => \Intervention\Image\Drivers\Imagick\Driver::class,
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View file

@ -3,7 +3,7 @@ FROM dunglas/frankenphp
# Copy php.ini # Copy php.ini
COPY ./deploy/php.ini $PHP_INI_DIR/php.ini COPY ./deploy/php.ini $PHP_INI_DIR/php.ini
RUN apt update -y && apt install --no-install-recommends -y git nodejs npm libvips42 RUN apt update -y && apt install -y --no-install-recommends git nodejs npm
COPY --from=composer:lts /usr/bin/composer /usr/bin/composer COPY --from=composer:lts /usr/bin/composer /usr/bin/composer
RUN install-php-extensions \ RUN install-php-extensions \
@ -13,8 +13,7 @@ RUN install-php-extensions \
mongodb \ mongodb \
pcntl \ pcntl \
gmp \ gmp \
ffi \ imagick \
vips \
zip zip
COPY . /app COPY . /app