image from php:7.2.7-fpm-alpine with gd an pnglib
ARG PHP_VERSION="7.2.7"
FROM php:${PHP_VERSION:+${PHP_VERSION}-}fpm-alpine
MAINTAINER Fabrice LEGRAND <[email protected]>
RUN apk update; \
apk upgrade;
RUN docker-php-ext-install mysqli
RUN apk add --no-cache freetype libpng libjpeg-turbo freetype-dev libpng-dev libjpeg-turbo-dev && \
docker-php-ext-configure gd \
--with-gd \
--with-freetype-dir=/usr/include/ \
--with-png-dir=/usr/include/ \
--with-jpeg-dir=/usr/include/ && \
NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \
docker-php-ext-install -j${NPROC} gd && \
apk del --no-cache freetype-dev libpng-dev libjpeg-turbo-dev
Content type
Image
Digest
Size
34.9 MB
Last updated
over 7 years ago
docker pull fabouya/php7alpine