Fix missing apt-utils package (#1652)

This commit is contained in:
Abdelrahman Omran 2018-06-27 12:47:05 +02:00 committed by Shao Yu-Lung (Allen)
parent 06d0105514
commit 09e998b723

View File

@ -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
#