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.
9 lines
398 B
Docker
9 lines
398 B
Docker
FROM php:7.2-cli
|
|
|
|
RUN apt-get update && \
|
|
apt-get install libgmp-dev libpng-dev libjpeg-dev --no-install-recommends -qy && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h && \
|
|
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) gmp gd
|