Browse Source

Fix missing apt-utils package (#1652)

Abdelrahman Omran 6 years ago
parent
commit
09e998b723
1 changed files with 4 additions and 0 deletions
  1. 4 0
      php-fpm/Dockerfile

+ 4 - 0
php-fpm/Dockerfile

@@ -18,8 +18,12 @@ FROM laradock/php-fpm:2.2-${PHP_VERSION}
 
 LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
 
+# Set Environment Variables
+ENV DEBIAN_FRONTEND noninteractive
+
 # always run apt update when start and after add new source list, then clean up at end.
 RUN apt-get update -yqq && \
+    apt-get install -y apt-utils && \
     pecl channel-update pecl.php.net
 
 #