Account created on 20 February 2015, over 9 years ago
#

Recent comments

🇮🇹Italy sjpagan

Hi,
in my case had a wrong configuration on Dockerfile, I solved it like this:

FROM php:8.1.6-apache

RUN apt-get update && apt-get install -y \
    libwebp-dev \
    libpng-dev \
    libjpeg-dev \
    && docker-php-ext-install -j$(nproc) gd \
    && docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg \
    && docker-php-ext-install gd

The problem is due to a wrong configuration of GD on the server and not to the code.

Production build 0.69.0 2024