From ec9c8545f8408e747f283a33d4552187f6cec13f Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 23 Aug 2021 13:47:51 +0200 Subject: [PATCH] Makefile: remove passing proxy env-vars Docker 17.07 and up allow the CLI to be configured to set default proxy env-vars to be used (both as build-arg and as env for docker run), see docker/cli#93, so setting these here should be redundant. If someone needs these env-vars set, they should be configured in the cli's `~/.docker/config.json` instead. Signed-off-by: Sebastiaan van Stijn --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index dbc26f5e5e..5247070730 100644 --- a/Makefile +++ b/Makefile @@ -82,12 +82,6 @@ DOCKER_ENVS := \ -e VALIDATE_REPO \ -e VALIDATE_BRANCH \ -e VALIDATE_ORIGIN_BRANCH \ - -e HTTP_PROXY \ - -e HTTPS_PROXY \ - -e NO_PROXY \ - -e http_proxy \ - -e https_proxy \ - -e no_proxy \ -e VERSION \ -e PLATFORM \ -e DEFAULT_PRODUCT_LICENSE \