github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/dashboard/env/linux-x86-base/scripts/install-apt-deps.sh (about) 1 set -ex 2 3 apt-get update 4 apt-get install -y --no-install-recommends ca-certificates 5 # Optionally used by some net/http tests: 6 apt-get install -y --no-install-recommends strace 7 # For building Go's bootstrap 'dist' prog 8 apt-get install -y --no-install-recommends gcc libc6-dev 9 # For 32-bit builds: 10 # TODO(bradfitz): move these into a 386 image that derives from this one. 11 apt-get install -y --no-install-recommends libc6-dev-i386 gcc-multilib 12 # For interacting with the Go source & subrepos: 13 apt-get install -y --no-install-recommends git-core 14 15 apt-get clean 16 rm -fr /var/lib/apt/lists