1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Enforce CGO_ENABLED=0 only for docker-proxy

Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
Tibor Vass 2017-05-04 17:18:00 -07:00
parent f47a61c429
commit e30c2e86e8

View file

@ -99,8 +99,10 @@ do
;;
proxy)
export CGO_ENABLED=0
install_proxy
(
export CGO_ENABLED=0
install_proxy
)
;;
proxy-dynamic)