diff --git a/docker/go-1.5.2/Dockerfile b/docker/go-1.5.2/Dockerfile new file mode 100644 index 0000000..6415780 --- /dev/null +++ b/docker/go-1.5.2/Dockerfile @@ -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 + +# 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 diff --git a/docker/go-1.5.x/Dockerfile b/docker/go-1.5.x/Dockerfile index d8c1b46..d90b1ec 100644 --- a/docker/go-1.5.x/Dockerfile +++ b/docker/go-1.5.x/Dockerfile @@ -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