2018-02-27 14:26:12 +00:00
|
|
|
# Go cross compiler (xgo): Go 1.9.3
|
|
|
|
# Copyright (c) 2018 Péter Szilágyi. All rights reserved.
|
2018-02-21 23:59:46 +00:00
|
|
|
#
|
|
|
|
# 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 193
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
export ROOT_DIST=https://storage.googleapis.com/golang/go1.9.3.linux-amd64.tar.gz && \
|
|
|
|
export ROOT_DIST_SHA=a4da5f4c07dfda8194c4621611aeb7ceaab98af0b38bfb29e1be2ebb04c3556c && \
|
|
|
|
\
|
|
|
|
$BOOTSTRAP_PURE
|