From 442d09fec0aa673f8ef58eeabe1b2930e0c168a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 4 Feb 2016 12:16:33 +0200 Subject: [PATCH] Add support for Go 1.6 RC 2 --- docker/go-1.6rc2/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker/go-1.6rc2/Dockerfile diff --git a/docker/go-1.6rc2/Dockerfile b/docker/go-1.6rc2/Dockerfile new file mode 100644 index 0000000..d88e63d --- /dev/null +++ b/docker/go-1.6rc2/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.6 release candidate 2 layer +# 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 +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.6rc2.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=9c19fa0fe32ee9bff79123d47147a5fd15fec451806bf5644a01173a86a8a4b9 && \ + \ + $BOOTSTRAP_PURE + +ENV GO_VERSION 160