From 857b5896dd80abbdc4928f3607dc70a34c36cae4 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 26 Jun 2020 08:27:38 -0500 Subject: [PATCH] Set noninteractive in assemble script too We install the packages in the builder images so that things can build. Change-Id: I2e83158a9ba8517ff199c6efb6abf306b76b7d7d --- docker/python-builder/scripts/assemble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/python-builder/scripts/assemble b/docker/python-builder/scripts/assemble index 7add890d65..28907a0511 100755 --- a/docker/python-builder/scripts/assemble +++ b/docker/python-builder/scripts/assemble @@ -35,7 +35,7 @@ function install_bindep { bindep -l newline >> /output/bindep/run.txt || true compile_packages=$(bindep -b compile || true) if [ ! -z "$compile_packages" ] ; then - apt-get install -y ${compile_packages} + DEBIAN_FRONTEND=noninteractive apt-get install -y ${compile_packages} fi fi }