From 1bcb55cb47899435f931a4cf2710c0150d6ba760 Mon Sep 17 00:00:00 2001 From: Florian Bertholin Date: Tue, 10 Jan 2017 17:54:21 +0100 Subject: [PATCH 1/2] Add Go 1.7.4 --- docker/go-1.7.4/Dockerfile | 17 +++++++++++++++++ docker/go-1.7.x/Dockerfile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docker/go-1.7.4/Dockerfile diff --git a/docker/go-1.7.4/Dockerfile b/docker/go-1.7.4/Dockerfile new file mode 100644 index 0000000..c108392 --- /dev/null +++ b/docker/go-1.7.4/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.7.3 +# Copyright (c) 2016 Péter Szilágyi. All rights reserved. +# +# Released under the MIT license. + +FROM karalabe/xgo-base + +MAINTAINER Péter Szilágyi + +# Configure the root Go distribution and bootstrap based on it +ENV GO_VERSION 174 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.7.4.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=47fda42e46b4c3ec93fa5d4d4cc6a748aa3f9411a2a2b7e08e3a6d80d753ec8b && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.7.x/Dockerfile b/docker/go-1.7.x/Dockerfile index bd1a222..05e7820 100644 --- a/docker/go-1.7.x/Dockerfile +++ b/docker/go-1.7.x/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.7.3 +FROM karalabe/xgo-1.7.4 MAINTAINER Péter Szilágyi From 82a28f64488e573399471faea01eacaae91f42d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Wed, 11 Jan 2017 11:57:16 +0200 Subject: [PATCH 2/2] Fix minor typos in 1.7.4 Dockerfile --- docker/go-1.7.4/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/go-1.7.4/Dockerfile b/docker/go-1.7.4/Dockerfile index c108392..5429c8d 100644 --- a/docker/go-1.7.4/Dockerfile +++ b/docker/go-1.7.4/Dockerfile @@ -1,5 +1,5 @@ -# Go cross compiler (xgo): Go 1.7.3 -# Copyright (c) 2016 Péter Szilágyi. All rights reserved. +# Go cross compiler (xgo): Go 1.7.4 +# Copyright (c) 2017 Péter Szilágyi. All rights reserved. # # Released under the MIT license.