bazel: statically link dockerized components

and remove libc from docker images when it's not needed.
This commit is contained in:
Mike Danese
2017-04-11 10:22:17 -07:00
parent 55042b0ba9
commit 3757e8bb5c
9 changed files with 54 additions and 11 deletions

View File

@@ -10,6 +10,12 @@ load(
go_binary(
name = "kubectl",
gc_linkopts = [
"-linkmode",
"external",
"-extldflags",
"-static",
],
library = ":go_default_library",
linkstamp = "k8s.io/kubernetes/pkg/version",
tags = ["automanaged"],