From 2e24c0be082ba07a680aaab0e068021d302d7be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=B8=9C=E4=BA=91?= Date: Wed, 8 Jun 2022 20:04:29 +0800 Subject: [PATCH] =?UTF-8?q?feat(apk):=20=E2=9C=A8=20=E5=B0=9D=E8=AF=95?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=97=A0=E6=B3=95=E4=B8=8A=E4=BC=A0=20jpg?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=8C=E5=90=8C?= =?UTF-8?q?=E6=97=B6=E6=B7=BB=E5=8A=A0=E4=BA=86=E6=9B=B4=E5=A4=9A=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E7=B1=BB=E5=9E=8B=E7=9A=84=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 7.4/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/7.4/Dockerfile b/7.4/Dockerfile index d6faa33..94cd644 100644 --- a/7.4/Dockerfile +++ b/7.4/Dockerfile @@ -18,6 +18,11 @@ RUN apk add --no-cache \ \ gmp-dev \ && docker-php-ext-configure gd \ + --with-gd \ + --with-freetype-dir=/usr/include/ \ + --with-png-dir=/usr/include/ \ + --with-jpeg-dir=/usr/include/ && \ + --with-webp-dir=/usr/include/ && \ && docker-php-ext-install -j$(nproc) gd \ gmp \ pdo_mysql \