2015-12-18 10:08:33 +00:00
|
|
|
# Go cross compiler (xgo): Go 1.6 beta 1 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.6beta1.linux-amd64.tar.gz && \
|
2016-01-14 10:14:59 +00:00
|
|
|
export ROOT_DIST_SHA=5c02222a5ab348ae0f9244df95dea71781953749 && \
|
2015-12-18 10:08:33 +00:00
|
|
|
\
|
|
|
|
$BOOTSTRAP_PURE
|
|
|
|
|
|
|
|
ENV GO_VERSION 160
|