mirror of https://github.com/status-im/xgo.git
Upgrade xgo to Go 1.6.2
This commit is contained in:
parent
4efbf02af4
commit
ad4e4357f1
|
@ -0,0 +1,17 @@
|
||||||
|
# Go cross compiler (xgo): Go 1.6.2
|
||||||
|
# Copyright (c) 2016 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
|
||||||
|
RUN \
|
||||||
|
export ROOT_DIST=https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz && \
|
||||||
|
export ROOT_DIST_SHA=e40c36ae71756198478624ed1bb4ce17597b3c19d243f3f0899bb5740d56212a && \
|
||||||
|
\
|
||||||
|
$BOOTSTRAP_PURE
|
||||||
|
|
||||||
|
ENV GO_VERSION 162
|
|
@ -3,6 +3,6 @@
|
||||||
#
|
#
|
||||||
# Released under the MIT license.
|
# Released under the MIT license.
|
||||||
|
|
||||||
FROM karalabe/xgo-1.6.1
|
FROM karalabe/xgo-1.6.2
|
||||||
|
|
||||||
MAINTAINER Péter Szilágyi <peterke@gmail.com>
|
MAINTAINER Péter Szilágyi <peterke@gmail.com>
|
||||||
|
|
|
@ -27,7 +27,7 @@ var layers = []struct {
|
||||||
dir string
|
dir string
|
||||||
}{
|
}{
|
||||||
{"karalabe/xgo-base", "base"},
|
{"karalabe/xgo-base", "base"},
|
||||||
{"karalabe/xgo-1.6.1", "go-1.6.1"},
|
{"karalabe/xgo-1.6.2", "go-1.6.2"},
|
||||||
{"karalabe/xgo-1.6.x", "go-1.6.x"},
|
{"karalabe/xgo-1.6.x", "go-1.6.x"},
|
||||||
{"karalabe/xgo-latest", "go-latest"},
|
{"karalabe/xgo-latest", "go-latest"},
|
||||||
//{"karalabe/xgo-latest-ios", "go-latest-ios"}, // Non-public layer (XCode licensing)
|
//{"karalabe/xgo-latest-ios", "go-latest-ios"}, // Non-public layer (XCode licensing)
|
||||||
|
|
Loading…
Reference in New Issue