From 3caa04bc46bd9fac3bce6e5e7edb8fa1f2e4c9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 16 Aug 2016 09:39:49 +0300 Subject: [PATCH] Add Go 1.7 final, rewire wildcard images pointing to it. --- docker/{go-1.7rc5 => go-1.7.0}/Dockerfile | 6 +++--- docker/go-1.7.x/Dockerfile | 8 ++++++++ docker/go-latest/Dockerfile | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) rename docker/{go-1.7rc5 => go-1.7.0}/Dockerfile (55%) create mode 100644 docker/go-1.7.x/Dockerfile diff --git a/docker/go-1.7rc5/Dockerfile b/docker/go-1.7.0/Dockerfile similarity index 55% rename from docker/go-1.7rc5/Dockerfile rename to docker/go-1.7.0/Dockerfile index 40171ea..260f170 100644 --- a/docker/go-1.7rc5/Dockerfile +++ b/docker/go-1.7.0/Dockerfile @@ -1,4 +1,4 @@ -# Go cross compiler (xgo): Go 1.7rc5 +# Go cross compiler (xgo): Go 1.7 # Copyright (c) 2016 Péter Szilágyi. All rights reserved. # # Released under the MIT license. @@ -11,7 +11,7 @@ MAINTAINER Péter Szilágyi ENV GO_VERSION 170 RUN \ - export ROOT_DIST=https://storage.googleapis.com/golang/go1.7rc5.linux-amd64.tar.gz && \ - export ROOT_DIST_SHA=2ddf9f553aefe91d96dd3f13be55159869a221fd0111cd211dccf2cab3ee5e4a && \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=702ad90f705365227e902b42d91dd1a40e48ca7f67a2f4b2fd052aaa4295cd95 && \ \ $BOOTSTRAP_PURE diff --git a/docker/go-1.7.x/Dockerfile b/docker/go-1.7.x/Dockerfile new file mode 100644 index 0000000..7743b74 --- /dev/null +++ b/docker/go-1.7.x/Dockerfile @@ -0,0 +1,8 @@ +# Go cross compiler (xgo): Wildcard layer to the latest 1.7 release +# Copyright (c) 2016 Péter Szilágyi. All rights reserved. +# +# Released under the MIT license. + +FROM karalabe/xgo-1.7.0 + +MAINTAINER Péter Szilágyi diff --git a/docker/go-latest/Dockerfile b/docker/go-latest/Dockerfile index fbc8372..53880d5 100644 --- a/docker/go-latest/Dockerfile +++ b/docker/go-latest/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.6.x +FROM karalabe/xgo-1.7.x MAINTAINER Péter Szilágyi