13 lines
469 B
Docker
13 lines
469 B
Docker
FROM php:8.2-fpm-alpine
|
|
|
|
# Install dependencies for GD and install GD with support for jpeg, png webp and freetype
|
|
# Info about installing GD in PHP https://www.php.net/manual/en/image.installation.php
|
|
RUN apk add --no-cache \
|
|
libjpeg-turbo-dev \
|
|
libpng-dev \
|
|
libwebp-dev \
|
|
freetype-dev
|
|
|
|
# As of PHP 7.4 we don't need to add --with-png
|
|
RUN docker-php-ext-configure gd --with-jpeg --with-webp --with-freetype
|
|
RUN docker-php-ext-install gd |