From 0558c6e66400bd4738b69b93d050fd6fdc8b2ee7 Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Fri, 17 Feb 2017 00:12:05 -1000 Subject: [PATCH] Add Go 1.8.0 --- docker/go-1.8.0/Dockerfile | 17 +++++++++++++++++ docker/go-1.8.x/Dockerfile | 8 ++++++++ 2 files changed, 25 insertions(+) create mode 100644 docker/go-1.8.0/Dockerfile create mode 100644 docker/go-1.8.x/Dockerfile diff --git a/docker/go-1.8.0/Dockerfile b/docker/go-1.8.0/Dockerfile new file mode 100644 index 0000000..e27f3f1 --- /dev/null +++ b/docker/go-1.8.0/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.8 +# 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 180 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=53ab94104ee3923e228a2cb2116e5e462ad3ebaeea06ff04463479d7f12d27ca && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.8.x/Dockerfile b/docker/go-1.8.x/Dockerfile new file mode 100644 index 0000000..4557acb --- /dev/null +++ b/docker/go-1.8.x/Dockerfile @@ -0,0 +1,8 @@ +# Go cross compiler (xgo): Wildcard layer to the latest 1.8 release +# Copyright (c) 2017 Péter Szilágyi. All rights reserved. +# +# Released under the MIT license. + +FROM karalabe/xgo-1.8.0 + +MAINTAINER Péter Szilágyi