Merge pull request #117 from bhcleek/go1.10.1

Add go 1.10.1 and make it 1.10.x and latest
This commit is contained in:
Péter Szilágyi 2018-04-16 11:30:54 +03:00 committed by GitHub
commit f99c776585
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.10
# Copyright (c) 2018 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 1101
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.10.1.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=72d820dec546752e5a8303b33b009079c15c2390ce76d67cf514991646c6127b && \
\
$BOOTSTRAP_PURE

View File

@ -3,6 +3,6 @@
# #
# Released under the MIT license. # Released under the MIT license.
FROM karalabe/xgo-1.10 FROM karalabe/xgo-1.10.1
MAINTAINER Péter Szilágyi <peterke@gmail.com> MAINTAINER Péter Szilágyi <peterke@gmail.com>