Skip to content
This repository has been archived by the owner on Feb 7, 2022. It is now read-only.

Commit

Permalink
Merge branch 'lixingwang-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Mar 1, 2019
2 parents 72da7d1 + 650f7e7 commit 2d6d184
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 2 deletions.
17 changes: 17 additions & 0 deletions docker/go-1.11.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <peterke@gmail.com>

# 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
17 changes: 17 additions & 0 deletions docker/go-1.11.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <peterke@gmail.com>

# 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
17 changes: 17 additions & 0 deletions docker/go-1.11.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <peterke@gmail.com>

# 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
17 changes: 17 additions & 0 deletions docker/go-1.11.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.11.5
# Copyright (c) 2019 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 1115

RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.11.5.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25 && \
\
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.11.x/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#
# Released under the MIT license.

FROM karalabe/xgo-1.11.1
FROM karalabe/xgo-1.11.5

MAINTAINER Péter Szilágyi <peterke@gmail.com>
17 changes: 17 additions & 0 deletions docker/go-1.12.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.12
# Copyright (c) 2019 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 1120

RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.12.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=750a07fef8579ae4839458701f4df690e0b20b8bcce33b437e4df89c451b6f13 && \
\
$BOOTSTRAP_PURE
8 changes: 8 additions & 0 deletions docker/go-1.12.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Go cross compiler (xgo): Go 1.12.x
# Copyright (c) 2019 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.

FROM karalabe/xgo-1.12

MAINTAINER Péter Szilágyi <peterke@gmail.com>
2 changes: 1 addition & 1 deletion docker/go-latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#
# Released under the MIT license.

FROM karalabe/xgo-1.11.x
FROM karalabe/xgo-1.12.x

MAINTAINER Péter Szilágyi <peterke@gmail.com>

0 comments on commit 2d6d184

Please sign in to comment.