Update xgo to use Go 1.5.2

This commit is contained in:
Péter Szilágyi 2015-12-04 10:37:09 +02:00
parent 9e2240bac6
commit 5019246e20
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.5.2 layer
# Copyright (c) 2015 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.5.2.linux-amd64.tar.gz && \
export ROOT_DIST_SHA1=cae87ed095e8d94a81871281d35da7829bd1234e && \
\
$BOOTSTRAP_PURE
ENV GO_VERSION 152

View File

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