From b986767c7380833d948214e0a53f956731bddbf0 Mon Sep 17 00:00:00 2001 From: Cory Bennett Date: Fri, 22 Sep 2017 21:22:51 -0700 Subject: [PATCH] update to docker 1.9 --- docker/go-1.9.0/Dockerfile | 17 +++++++++++++++++ docker/go-1.9.x/Dockerfile | 8 ++++++++ docker/go-latest/Dockerfile | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 docker/go-1.9.0/Dockerfile create mode 100644 docker/go-1.9.x/Dockerfile diff --git a/docker/go-1.9.0/Dockerfile b/docker/go-1.9.0/Dockerfile new file mode 100644 index 0000000..392d91b --- /dev/null +++ b/docker/go-1.9.0/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.9 +# 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 190 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=d70eadefce8e160638a9a6db97f7192d8463069ab33138893ad3bf31b0650a79 && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.9.x/Dockerfile b/docker/go-1.9.x/Dockerfile new file mode 100644 index 0000000..de31d13 --- /dev/null +++ b/docker/go-1.9.x/Dockerfile @@ -0,0 +1,8 @@ +# Go cross compiler (xgo): Wildcard layer to the latest 1.9 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 diff --git a/docker/go-latest/Dockerfile b/docker/go-latest/Dockerfile index 4795571..644d6b2 100644 --- a/docker/go-latest/Dockerfile +++ b/docker/go-latest/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.8.x +FROM karalabe/xgo-1.9.x MAINTAINER Péter Szilágyi