Browse Source

Fixed failing builds to add imagick #530

Mark Shust 3 năm trước cách đây
mục cha
commit
6f2e8627ee
3 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 1 1
      images/php/7.3/Dockerfile
  2. 1 1
      images/php/7.4/Dockerfile
  3. 1 1
      images/php/8.0/Dockerfile

+ 1 - 1
images/php/7.3/Dockerfile

@@ -71,7 +71,7 @@ RUN pecl install ssh2-1.2 \
 RUN pecl install redis \
   && docker-php-ext-enable redis
 
-RUN apt-get install libmagickwand-dev \
+RUN apt-get install -y libmagickwand-dev \
   && pecl install imagick  \
   && docker-php-ext-enable imagick
 

+ 1 - 1
images/php/7.4/Dockerfile

@@ -71,7 +71,7 @@ RUN pecl install ssh2-1.2 \
 RUN pecl install redis \
   && docker-php-ext-enable redis
 
-RUN apt-get install libmagickwand-dev \
+RUN apt-get install -y libmagickwand-dev \
   && pecl install imagick  \
   && docker-php-ext-enable imagick
 

+ 1 - 1
images/php/8.0/Dockerfile

@@ -58,7 +58,7 @@ RUN pecl install ssh2-1.3.1 \
 RUN pecl install redis \
   && docker-php-ext-enable redis
 
-RUN apt-get install libmagickwand-dev \
+RUN apt-get install -y libmagickwand-dev \
   && pecl install imagick  \
   && docker-php-ext-enable imagick