mirror of https://github.com/status-im/xgo.git
Merge pull request #92 from sofuture/update-1.9.1
Update with golang 1.9.0 + 1.9.1
This commit is contained in:
commit
386b8a0c52
|
@ -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
|
|
@ -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
|
|
@ -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>
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue