ソースを参照

support/docker: don't be silent when setting up

This image is not built very often, and when it is, it is important to
see what's going on, so don't be silent when installing packages from
the distro, and since that can take a bit of time it thus serves as
progress report...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN 7 年 前
コミット
efa8744655
1 ファイル変更4 行追加4 行削除
  1. 4 4
      support/docker/Dockerfile

+ 4 - 4
support/docker/Dockerfile

@@ -13,16 +13,16 @@ ENV DEBIAN_FRONTEND noninteractive
 
 
 # The container has no package lists, so need to update first
 # The container has no package lists, so need to update first
 RUN dpkg --add-architecture i386 && \
 RUN dpkg --add-architecture i386 && \
-    apt-get update -y -qq && \
-    apt-get install -y -qq --no-install-recommends \
+    apt-get update -y && \
+    apt-get install -y --no-install-recommends \
         build-essential cmake libc6:i386 gcc-multilib \
         build-essential cmake libc6:i386 gcc-multilib \
         bc ca-certificates file locales rsync \
         bc ca-certificates file locales rsync \
         cvs bzr git mercurial subversion wget \
         cvs bzr git mercurial subversion wget \
         cpio unzip \
         cpio unzip \
         libncurses5-dev \
         libncurses5-dev \
         python-nose2 python-pexpect qemu-system-arm qemu-system-x86 && \
         python-nose2 python-pexpect qemu-system-arm qemu-system-x86 && \
-    apt-get -q -y autoremove && \
-    apt-get -q -y clean
+    apt-get -y autoremove && \
+    apt-get -y clean
 
 
 # To be able to generate a toolchain with locales, enable one UTF-8 locale
 # To be able to generate a toolchain with locales, enable one UTF-8 locale
 RUN sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen && \
 RUN sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen && \