diff --git a/docker/go-1.10.1/Dockerfile b/docker/go-1.10.1/Dockerfile new file mode 100644 index 0000000..c9a8204 --- /dev/null +++ b/docker/go-1.10.1/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.10 +# Copyright (c) 2018 Péter Szilágyi. All rights reserved. +# +# Released under the MIT license. + +FROM karalabe/xgo-base + +MAINTAINER Péter Szilágyi + +# Configure the root Go distribution and bootstrap based on it +ENV GO_VERSION 1101 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.10.1.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=72d820dec546752e5a8303b33b009079c15c2390ce76d67cf514991646c6127b && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.10.x/Dockerfile b/docker/go-1.10.x/Dockerfile index 5fd8ba9..6d12f3a 100644 --- a/docker/go-1.10.x/Dockerfile +++ b/docker/go-1.10.x/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.10 +FROM karalabe/xgo-1.10.1 MAINTAINER Péter Szilágyi