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

Commit

Permalink
Add Go 1.11.5 and Go 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Mar 1, 2019
1 parent 8c3e04e commit 650f7e7
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
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.4
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 650f7e7

Please sign in to comment.