This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
386b8a0
commit ca1bd41
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Go cross compiler (xgo): Go 1.9.2 | ||
# 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 192 | ||
|
||
RUN \ | ||
export ROOT_DIST=https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=de874549d9a8d8d8062be05808509c09a88a248e77ec14eb77453530829ac02b && \ | ||
\ | ||
$BOOTSTRAP_PURE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
# | ||
# Released under the MIT license. | ||
|
||
FROM karalabe/xgo-1.9.1 | ||
FROM karalabe/xgo-1.9.2 | ||
|
||
MAINTAINER Péter Szilágyi <[email protected]> |