mirror of
https://github.com/golang/go
synced 2024-11-19 03:24:40 -07:00
551edbff13
sid was trying to use hg still. And remove curl everywhere (except nacl). It's unnecessary. Change-Id: I2a235d83b2bc7cf599c8de5796c724d8f368348e Reviewed-on: https://go-review.googlesource.com/1368 Reviewed-by: David Symonds <dsymonds@golang.org>
17 lines
583 B
Bash
Executable File
17 lines
583 B
Bash
Executable File
set -ex
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends ca-certificates
|
|
# Optionally used by some net/http tests:
|
|
apt-get install -y --no-install-recommends strace
|
|
# For building Go's bootstrap 'dist' prog
|
|
apt-get install -y --no-install-recommends gcc libc6-dev
|
|
# For 32-bit builds:
|
|
# TODO(bradfitz): move these into a 386 image that derives from this one.
|
|
apt-get install -y --no-install-recommends libc6-dev-i386 gcc-multilib
|
|
# For interacting with the Go source & subrepos:
|
|
apt-get install -y --no-install-recommends git-core
|
|
|
|
apt-get clean
|
|
rm -fr /var/lib/apt/lists
|