From 993c2120e58a6d3aa4dd142f2cbc3dfac542c56d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Sat, 8 Apr 2017 21:02:35 +0300 Subject: [PATCH] Add support for Go 1.8.1 --- docker/go-1.8.1/Dockerfile | 17 +++++++++++++++++ docker/go-1.8.x/Dockerfile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docker/go-1.8.1/Dockerfile diff --git a/docker/go-1.8.1/Dockerfile b/docker/go-1.8.1/Dockerfile new file mode 100644 index 0000000..10f5476 --- /dev/null +++ b/docker/go-1.8.1/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.8.1 +# Copyright (c) 2017 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 181 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=a579ab19d5237e263254f1eac5352efcf1d70b9dacadb6d6bb12b0911ede8994 && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.8.x/Dockerfile b/docker/go-1.8.x/Dockerfile index 5dfdb6e..f70cc0b 100644 --- a/docker/go-1.8.x/Dockerfile +++ b/docker/go-1.8.x/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.8 +FROM karalabe/xgo-1.8.1 MAINTAINER Péter Szilágyi