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:
parent
e863120cd3
commit
f2e9f556e8
@ -17,7 +17,7 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
apt-get update
|
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 there's a constraints file, use it.
|
||||||
if [ -f /output/upper-constraints.txt ] ; then
|
if [ -f /output/upper-constraints.txt ] ; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user