summaryrefslogtreecommitdiffstats
path: root/support/docker
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2018-02-04 15:44:23 +0100
committerPeter Korsgaard <peter@korsgaard.com>2018-02-04 21:53:02 +0100
commitefa87446559bda7a5661cbaf14a2dd011f3d7ce9 (patch)
tree358d069fdfa877f65e24c13088fd8e6c444014f9 /support/docker
parent7517aef4dcfbf6ae298f41f3ddd1187523b016e5 (diff)
downloadbuildroot-efa87446559bda7a5661cbaf14a2dd011f3d7ce9.tar.gz
buildroot-efa87446559bda7a5661cbaf14a2dd011f3d7ce9.zip
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>
Diffstat (limited to 'support/docker')
-rw-r--r--support/docker/Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile
index 23018585eb..aa2b38fcc9 100644
--- a/support/docker/Dockerfile
+++ b/support/docker/Dockerfile
@@ -13,16 +13,16 @@ ENV DEBIAN_FRONTEND noninteractive
# The container has no package lists, so need to update first
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 \
bc ca-certificates file locales rsync \
cvs bzr git mercurial subversion wget \
cpio unzip \
libncurses5-dev \
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
RUN sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen && \
OpenPOWER on IntegriCloud