rootfs: Install the right golang binaries for ppc64le

On ppc64le golang binaries should be pulled correctly

Fixes #72

Signed-off-by: Harshal Patil <harshal.patil@in.ibm.com>
This commit is contained in:
Harshal Patil 2018-03-23 11:46:40 +05:30
parent d0b3cf6d36
commit 2972a33535

View File

@ -93,6 +93,10 @@ generate_dockerfile() {
dir="$1"
case "$(arch)" in
"ppc64le")
goarch=ppc64le
;;
"aarch64")
goarch=arm64
;;