Add go 1.10.1 and make it 1.10.x and latest

This commit is contained in:
Billie Cleek 2018-04-10 08:40:52 -07:00
parent df8555d29b
commit 4b731721cb
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.
FROM karalabe/xgo-1.10
FROM karalabe/xgo-1.10.1
MAINTAINER Péter Szilágyi <peterke@gmail.com>