Set DEBIAN_FRONTEND to be noninteractive in make_apt.sh.

This would prevent timeout issues where apt-get gets stuck on some prompt.

PiperOrigin-RevId: 435558241
This commit is contained in:
Ayush Ranjan
2022-03-18 00:06:12 -07:00
committed by gVisor bot
parent 438c84460d
commit aaf0574af7
+1
View File
@@ -30,6 +30,7 @@ readonly root
shift; shift; shift # For "$@" below.
# Ensure that we have the correct packages installed.
export DEBIAN_FRONTEND=noninteractive
function apt_install() {
while true; do
sudo apt-get update &&