GD build params changed

This commit is contained in:
Andy Miller 2020-08-04 11:39:42 -06:00 committed by GitHub
parent 8157203d41
commit b8014e871d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& docker-php-ext-install opcache \ && docker-php-ext-install opcache \
&& docker-php-ext-configure intl \ && docker-php-ext-configure intl \
&& docker-php-ext-install intl \ && docker-php-ext-install intl \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd \ && docker-php-ext-install -j$(nproc) gd \
&& docker-php-ext-install zip \ && docker-php-ext-install zip \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*