This commit is contained in:
fastjrun 2022-10-19 08:13:59 +08:00
parent 70ec50f429
commit dd1c3f326c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ RUN cd /var/www/html && apt update \
&& docker-php-source extract \
&& cd /usr/src/php/ext/gd \
&& docker-php-ext-configure gd --with-webp=/usr/include/webp --with-jpeg=/usr/include --with-freetype=/usr/include/freetype2 \
make && make install \
&& make && make install \
&& docker-php-ext-install mysqli pdo pdo_mysql gd \
&& docker-php-ext-enable pdo_mysql \
&& apt clean && rm -rf /tmp/*