update to docker 1.9

This commit is contained in:
Cory Bennett 2017-09-22 21:22:51 -07:00
parent 34c7afab9a
commit b986767c73
3 changed files with 26 additions and 1 deletions

View File

@ -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

View File

@ -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.8.0
MAINTAINER Péter Szilágyi <peterke@gmail.com>

View File

@ -3,6 +3,6 @@
# #
# Released under the MIT license. # 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> MAINTAINER Péter Szilágyi <peterke@gmail.com>