diff options
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9058011b..2123a43f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,8 +14,9 @@ before_script: # Install mysql driver - docker-php-ext-install pdo_mysql -# Enable gd -- docker-php-ext-enable gd +# Install php-gd +- docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ +- docker-php-ext-install -j$(nproc) gd # Install composer - curl -sS https://getcomposer.org/installer | php |