feat(apk): 尝试解决无法上传 jpg图片的问题,同时添加了更多图片类型的支持
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
李东云
2022-06-08 20:04:29 +08:00
parent 07405bf1f1
commit 2e24c0be08

View File

@@ -18,6 +18,11 @@ RUN apk add --no-cache \
\ \
gmp-dev \ gmp-dev \
&& docker-php-ext-configure gd \ && 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 \ && docker-php-ext-install -j$(nproc) gd \
gmp \ gmp \
pdo_mysql \ pdo_mysql \