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
This commit is contained in:
Monty Taylor 2020-06-25 18:18:32 -05:00
parent e863120cd3
commit f2e9f556e8
1 changed files with 1 additions and 1 deletions

View File

@ -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