aboutsummaryrefslogtreecommitdiffstats
path: root/docker/php/Dockerfile
blob: 1b08d192f555aaae51fa0255dccfb53a078e6739 (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM php:7.1-fpm-alpine3.9

RUN apk add -U libjpeg-turbo-dev libpng-dev freetype-dev
RUN docker-php-ext-configure gd \
        --enable-gd-native-ttf \
        --with-freetype-dir=/usr/include/freetype2 \
        --with-png-dir=/usr/include \
        --with-jpeg-dir=/usr/include
RUN docker-php-ext-install gd mysqli

© 2014-2024 Faster IT GmbH | imprint | privacy policy