In order to install the GD extension in a Docker image, you should add the following instruction to your Dockerfile.
RUN set -eux; \
docker-php-ext-configure gd --with-freetype --with-jpeg; \
docker-php-ext-install exif gd
In order to install the GD extension in a Docker image, you should add the following instruction to your Dockerfile.
RUN set -eux; \
docker-php-ext-configure gd --with-freetype --with-jpeg; \
docker-php-ext-install exif gd
Learn how to upgrade your MicroK8s cluster to keep it up-to-date without affecting your highly available services.