php gd에 webp, jpg 누락 수정

This commit is contained in:
2022-05-08 19:19:39 +09:00
parent d3698fa2e4
commit 6f366e9592
+1 -1
View File
@@ -11,7 +11,7 @@ RUN apt -y update ;\
libzip-dev libxml2-dev libsqlite3-dev gosu build-essential;
RUN debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr; \
docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg --with-png ; \
docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd; \
docker-php-ext-configure mysqli --with-mysqli=mysqlnd; \
docker-php-ext-install -j "$(nproc)" \