]> Git Repo - qemu.git/commitdiff
docker: use eatmydata in debian arm64 image
authorPhilippe Mathieu-Daudé <[email protected]>
Fri, 2 Jun 2017 18:56:16 +0000 (15:56 -0300)
committerAlex Bennée <[email protected]>
Wed, 21 Jun 2017 14:01:48 +0000 (15:01 +0100)
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
Signed-off-by: Alex Bennée <[email protected]>
tests/docker/dockerfiles/debian-arm64-cross.docker

index 592b5d705523f1f214c314dc69280cd5a0989011..f3db7f4f5550d45cd05ffaa52260916cb2308961 100644 (file)
@@ -8,8 +8,11 @@ FROM qemu:debian
 # Add the foreign architecture we want and install dependencies
 RUN dpkg --add-architecture arm64
 RUN apt update
-RUN apt install -yy crossbuild-essential-arm64
-RUN apt-get build-dep -yy -a arm64 qemu
+RUN DEBIAN_FRONTEND=noninteractive eatmydata \
+    apt-get install -y --no-install-recommends \
+        crossbuild-essential-arm64
+RUN DEBIAN_FRONTEND=noninteractive eatmydata \
+    apt-get build-dep -yy -a arm64 qemu
 
 # Specify the cross prefix for this image (see tests/docker/common.rc)
 ENV QEMU_CONFIGURE_OPTS --cross-prefix=aarch64-linux-gnu-
This page took 0.026249 seconds and 4 git commands to generate.