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.
pdd-order-api/vendor/jenssegers/imagehash/docker/gmp.Dockerfile

9 lines
398 B
Plaintext

12 months ago
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