Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Fixed gd extension configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit Madan committed Jul 21, 2020
1 parent 1c61dca commit c0b648d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion php7.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y libgmp-dev libxml2-dev acl unzip gnupg
RUN pecl install xdebug && docker-php-ext-enable xdebug
RUN ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
RUN rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure gd
RUN docker-php-ext-configure gd --with-jpeg-dir --with-freetype-dir
RUN docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql zip bcmath bz2 gmp soap xsl intl calendar
RUN pecl install imagick && docker-php-ext-enable imagick
RUN pecl install pcov && docker-php-ext-enable pcov
Expand Down
2 changes: 1 addition & 1 deletion php7.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y libgmp-dev libxml2-dev acl unzip bc bzi
RUN pecl install xdebug && docker-php-ext-enable xdebug
RUN ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
RUN rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure gd
RUN docker-php-ext-configure gd --with-jpeg-dir --with-freetype-dir
RUN docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql zip bcmath bz2 gmp soap xsl intl calendar
RUN pecl install imagick && docker-php-ext-enable imagick
RUN pecl install pcov && docker-php-ext-enable pcov
Expand Down
2 changes: 1 addition & 1 deletion php7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y libgmp-dev libxml2-dev acl unzip bc bzi
RUN pecl install xdebug && docker-php-ext-enable xdebug
RUN ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
RUN rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure gd
RUN docker-php-ext-configure gd --with-jpeg --with-freetype
RUN docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql zip bcmath bz2 gmp soap xsl intl calendar
RUN pecl install imagick && docker-php-ext-enable imagick
RUN pecl install pcov && docker-php-ext-enable pcov
Expand Down

0 comments on commit c0b648d

Please sign in to comment.