Merge pull request #142 from cyphar/use-go1.5.3

Dockerfile: use Go 1.5.3
This commit is contained in:
Michael Crosby 2016-03-21 13:55:52 -07:00
commit 87846e3908

View file

@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Install Go
ENV GO_VERSION 1.5.2
ENV GO_VERSION 1.5.3
RUN curl -sSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar -v -C /usr/local -xz
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go:/go/src/github.com/docker/containerd/vendor