sandbox: update to go1.7.4, add missing Dockerfile dep

Change-Id: Ie40d867223356499c9106d364f9c578f6c76a986
Reviewed-on: https://go-review.googlesource.com/34558
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/sandbox/Dockerfile b/sandbox/Dockerfile
index 6d5e75f..bdb6dc7 100644
--- a/sandbox/Dockerfile
+++ b/sandbox/Dockerfile
@@ -7,7 +7,7 @@
 ENV GOPATH /go
 ENV PATH /usr/local/go/bin:$GOPATH/bin:$PATH
 ENV GOROOT_BOOTSTRAP /usr/local/gobootstrap
-ENV GO_VERSION 1.7
+ENV GO_VERSION 1.7.4
 
 # Fake time
 COPY enable-fake-time.patch /usr/local/sandbox/
@@ -43,7 +43,7 @@
     apt-get purge -y --auto-remove $buildDeps
 
 # Add and compile tour packages
-RUN set -x && buildDeps='git'; \
+RUN set -x && buildDeps='git ca-certificates'; \
     apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && \
     GOOS=nacl GOARCH=amd64p32 go get \
     golang.org/x/tour/pic \