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

Commit

Permalink
Merge pull request #92 from sofuture/update-1.9.1
Browse files Browse the repository at this point in the history
Update with golang 1.9.0 + 1.9.1
  • Loading branch information
karalabe authored Dec 21, 2017
2 parents 34c7afa + 799bccc commit 386b8a0
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
17 changes: 17 additions & 0 deletions docker/go-1.9.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.9
# Copyright (c) 2017 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.

FROM karalabe/xgo-base

MAINTAINER Péter Szilágyi <[email protected]>

# Configure the root Go distribution and bootstrap based on it
ENV GO_VERSION 190

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

FROM karalabe/xgo-base

MAINTAINER Péter Szilágyi <[email protected]>

# Configure the root Go distribution and bootstrap based on it
ENV GO_VERSION 191

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

FROM karalabe/xgo-1.9.1

MAINTAINER Péter Szilágyi <[email protected]>
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.8.x
FROM karalabe/xgo-1.9.x

MAINTAINER Péter Szilágyi <[email protected]>

0 comments on commit 386b8a0

Please sign in to comment.