Merge pull request #73 from jyap808/master

Add Go 1.8.0
This commit is contained in:
Péter Szilágyi 2017-02-18 17:12:31 +02:00 committed by GitHub
commit e7f75d7a4f
3 changed files with 27 additions and 2 deletions

View File

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

View File

@ -0,0 +1,8 @@
# Go cross compiler (xgo): Wildcard layer to the latest 1.8 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 <peterke@gmail.com>

View File

@ -1,8 +1,8 @@
# Go cross compiler (xgo): Wildcard layer to the latest Go release
# Copyright (c) 2014 Péter Szilágyi. All rights reserved.
# Copyright (c) 2017 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.
FROM karalabe/xgo-1.7.x
FROM karalabe/xgo-1.8.x
MAINTAINER Péter Szilágyi <peterke@gmail.com>