Merge pull request #92 from sofuture/update-1.9.1

Update with golang 1.9.0 + 1.9.1
This commit is contained in:
Péter Szilágyi 2017-12-21 11:40:32 +02:00 committed by GitHub
commit 386b8a0c52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 1 deletions

View File

@ -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 <peterke@gmail.com>
# 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

View File

@ -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 <peterke@gmail.com>
# Configure the root Go distribution and bootstrap based on it
ENV GO_VERSION 191
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.9.1.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=07d81c6b6b4c2dcf1b5ef7c27aaebd3691cdb40548500941f92b221147c5d9c7 && \
\
$BOOTSTRAP_PURE

View File

@ -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.9.1
MAINTAINER Péter Szilágyi <peterke@gmail.com>

View File

@ -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 <peterke@gmail.com>