Skip to content

Commit

Permalink
Merge pull request #82 from burningmantech/yf-gd-config
Browse files Browse the repository at this point in the history
gd config is in the wrong place.
  • Loading branch information
mikeburg authored Dec 24, 2024
2 parents df3c4dc + f4822e1 commit 0e2232a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ RUN apk add --no-cache \
&& docker-php-ext-configure opcache --enable-opcache \
&& docker-php-ext-configure intl \
&& docker-php-ext-configure exif \
&& docker-php-ext-install -j$(nproc) \
&& docker-php-ext-configure gd \
--with-jpeg=/usr/include/ \
--with-webp=/usr/include/ \
&& docker-php-ext-install -j$(nproc) \
exif \
gd \
intl \
Expand All @@ -43,9 +46,6 @@ RUN apk add --no-cache \
&& docker-php-ext-configure pcntl --enable-pcntl \
&& docker-php-ext-install pcntl \
&& docker-php-ext-enable imagick \
&& docker-php-ext-configure gd \
--with-jpeg=/usr/include/ \
--with-webp=/usr/include/ \
&& apk del \
icu-dev \
imagemagick-dev \
Expand Down

0 comments on commit 0e2232a

Please sign in to comment.