Add support for Go 1.8.1

This commit is contained in:
Péter Szilágyi 2017-04-08 21:02:35 +03:00
parent c408ba5799
commit 993c2120e5
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.8.1
# 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 181
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=a579ab19d5237e263254f1eac5352efcf1d70b9dacadb6d6bb12b0911ede8994 && \
\
$BOOTSTRAP_PURE

View File

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