fix(gd): 🐞 修复 dockerfile 安装失败
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
李东云
2022-06-08 20:08:07 +08:00
parent 1fd414336d
commit be0010b3e3

View File

@@ -18,11 +18,10 @@ 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/ \
--with-freetype \
--with-jpeg \
--with-png \
--with-webp \
&& docker-php-ext-install -j$(nproc) gd \
gmp \
pdo_mysql \