From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dCHZe-0001PG-2K for qemu-devel@nongnu.org; Sat, 20 May 2017 23:30:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dCHZc-0007FZ-Np for qemu-devel@nongnu.org; Sat, 20 May 2017 23:30:30 -0400 Received: from mail-oi0-x243.google.com ([2607:f8b0:4003:c06::243]:35621) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dCHZc-0007FQ-JE for qemu-devel@nongnu.org; Sat, 20 May 2017 23:30:28 -0400 Received: by mail-oi0-x243.google.com with SMTP id m17so18049032oik.2 for ; Sat, 20 May 2017 20:30:28 -0700 (PDT) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Sun, 21 May 2017 00:29:40 -0300 Message-Id: <20170521032956.27446-9-f4bug@amsat.org> In-Reply-To: <20170521032956.27446-1-f4bug@amsat.org> References: <20170521032956.27446-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v3 08/24] docker: use eatmydata, install common build packages in base image List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= , Fam Zheng Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= The common build packages are: build-essential clang git bison flex Signed-off-by: Philippe Mathieu-Daudé --- tests/docker/dockerfiles/debian.docker | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/docker/dockerfiles/debian.docker b/tests/docker/dockerfiles/debian.docker index e5a10a5875..c62c87f205 100644 --- a/tests/docker/dockerfiles/debian.docker +++ b/tests/docker/dockerfiles/debian.docker @@ -11,7 +11,11 @@ FROM debian:stable-slim # Setup some basic tools we need RUN apt update -RUN apt install -yy aptitude ca-certificates curl +RUN DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata +RUN DEBIAN_FRONTEND=noninteractive \ + eatmydata apt install -y --no-install-recommends \ + aptitude ca-certificates curl \ + build-essential clang git bison flex # Install common build utilities RUN apt update -- 2.11.0