diff --git a/docker/go-1.7.5/Dockerfile b/docker/go-1.7.5/Dockerfile new file mode 100644 index 0000000..e030bd3 --- /dev/null +++ b/docker/go-1.7.5/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.7.5 +# Copyright (c) 2017 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 175 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.7.5.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=2e4dd6c44f0693bef4e7b46cc701513d74c3cc44f2419bf519d7868b12931ac3 && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.7.x/Dockerfile b/docker/go-1.7.x/Dockerfile index 05e7820..34a99cc 100644 --- a/docker/go-1.7.x/Dockerfile +++ b/docker/go-1.7.x/Dockerfile @@ -3,6 +3,6 @@ # # Released under the MIT license. -FROM karalabe/xgo-1.7.4 +FROM karalabe/xgo-1.7.5 MAINTAINER Péter Szilágyi