From c6595b3ee83d5cf8348739949e74720e62f7dd50 Mon Sep 17 00:00:00 2001 From: Alexandr Morozov Date: Wed, 13 Aug 2014 10:41:24 +0400 Subject: [PATCH] bump Go to 1.3.1 Signed-off-by: Alexandr Morozov --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e7d18f1c6d..55fa9044c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ language: go go: # This should match the version in the Dockerfile. - - 1.3 + - 1.3.1 # Test against older versions too, just for a little extra retrocompat. - 1.2 diff --git a/Dockerfile b/Dockerfile index 94fb47df58..8f47b0de75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ RUN cd /usr/local/lvm2 && ./configure --enable-static_link && make device-mapper # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL # Install Go -RUN curl -sSL https://golang.org/dl/go1.3.src.tar.gz | tar -v -C /usr/local -xz +RUN curl -sSL https://golang.org/dl/go1.3.1.src.tar.gz | tar -v -C /usr/local -xz ENV PATH /usr/local/go/bin:$PATH ENV GOPATH /go:/go/src/github.com/docker/docker/vendor ENV PATH /go/bin:$PATH