From 03044dc1a07cc801dff27fd11e069451df061105 Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Thu, 28 May 2015 15:18:47 -0700 Subject: [PATCH] Update Go version to 1.4.2 Signed-off-by: Nathan LeClaire --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6cff7380..2154e54f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,10 @@ -FROM golang:1.3-cross -RUN apt-get update && apt-get install -y --no-install-recommends openssh-client +FROM golang:1.4.2-cross # TODO: Vendor these `go get` commands using Godep. RUN go get github.com/mitchellh/gox RUN go get github.com/aktau/github-release RUN go get github.com/tools/godep -RUN go get code.google.com/p/go.tools/cmd/cover +RUN go get golang.org/x/tools/cmd/cover ENV GOPATH /go/src/github.com/docker/machine/Godeps/_workspace:/go ENV MACHINE_BINARY /go/src/github.com/docker/machine/docker-machine