1
0
mirror of https://github.com/golang/go synced 2024-11-19 06:54:39 -07:00
go/dashboard/env/commit-watcher/scripts/install-apt-deps.sh
Brad Fitzpatrick 8c1a5674dd dashboard: update the watcher and linux base builder image
Updates for the hg->git move.

Change-Id: I4c1b91ada1b90090db958554c92d06fb1d36ec35
Reviewed-on: https://go-review.googlesource.com/1364
Reviewed-by: Andrew Gerrand <adg@golang.org>
2014-12-12 00:46:34 +00:00

13 lines
403 B
Bash
Executable File

set -ex
apt-get update
# For running curl to get the hg starter tarballs (faster than hg clone).
apt-get install -y --no-install-recommends curl ca-certificates
# For building Go's bootstrap 'dist' prog
apt-get install -y --no-install-recommends gcc libc6-dev
# 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