From f2e9f556e8127bcff0da90dc320815be50a1971b Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 25 Jun 2020 18:18:32 -0500 Subject: [PATCH] Make bindep installs non-interactive python-builder is for building docker images. As such, we almost certainly don't want to be prompted for debconf questions. Set DEBIAN_FRONTEND=noninteractive so that things like krb5-user can be installed. Change-Id: Ieff0555a57e7dbc1b7c4a059b1d0351d016a0c86 --- docker/python-builder/scripts/install-from-bindep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/python-builder/scripts/install-from-bindep b/docker/python-builder/scripts/install-from-bindep index 2289c4991f..65419433e6 100755 --- a/docker/python-builder/scripts/install-from-bindep +++ b/docker/python-builder/scripts/install-from-bindep @@ -17,7 +17,7 @@ set -e apt-get update -apt-get -y install $(cat /output/bindep/run.txt) +DEBIAN_FRONTEND=noninteractive apt-get -y install $(cat /output/bindep/run.txt) # If there's a constraints file, use it. if [ -f /output/upper-constraints.txt ] ; then