You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
313 B
Plaintext

12 months ago
FROM php:7.2-cli
RUN apt-get update && \
apt-get install libpng-dev libjpeg-dev --no-install-recommends -qy && \
rm -rf /var/lib/apt/lists/* && \
docker-php-ext-configure gd --enable-gd-native-ttf --with-png-dir=/usr/include --with-jpeg-dir=/usr/include && \
docker-php-ext-install -j$(nproc) gd