diff --git a/docker/go-1.11.2/Dockerfile b/docker/go-1.11.2/Dockerfile new file mode 100644 index 00000000..8730991e --- /dev/null +++ b/docker/go-1.11.2/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.11.2 +# 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 1112 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.11.2.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=1dfe664fa3d8ad714bbd15a36627992effd150ddabd7523931f077b3926d736d && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.11.3/Dockerfile b/docker/go-1.11.3/Dockerfile new file mode 100644 index 00000000..c02fbdfa --- /dev/null +++ b/docker/go-1.11.3/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.11.3 +# 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 1113 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.11.3.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=d20a4869ffb13cee0f7ee777bf18c7b9b67ef0375f93fac1298519e0c227a07f && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.11.4/Dockerfile b/docker/go-1.11.4/Dockerfile new file mode 100644 index 00000000..801fe9a3 --- /dev/null +++ b/docker/go-1.11.4/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.11.4 +# 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 1114 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.11.4.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=fb26c30e6a04ad937bbc657a1b5bba92f80096af1e8ee6da6430c045a8db3a5b && \ + \ + $BOOTSTRAP_PURE diff --git a/docker/go-1.11.5/Dockerfile b/docker/go-1.11.5/Dockerfile new file mode 100644 index 00000000..971c9fdb --- /dev/null +++ b/docker/go-1.11.5/Dockerfile @@ -0,0 +1,17 @@ +# Go cross compiler (xgo): Go 1.11.5 +# 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 1115 + +RUN \ + export ROOT_DIST=https://storage.googleapis.com/golang/go1.11.5.linux-amd64.tar.gz && \ + export ROOT_DIST_SHA=ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25 && \ + \ + $BOOTSTRAP_PURE