From bb36db23ce108b0c0b926c5cd98f77bbe5302719 Mon Sep 17 00:00:00 2001 From: Stacey Fletcher Date: Thu, 21 Jun 2018 15:10:32 -0500 Subject: [PATCH] Makefile HTTP fix Putting build arguments to all caps to match Dockerfile ARG for HTTP_PROXY HTTPS_PROXY Change-Id: I9f6fdbfc202a483ca78562b95b010e913a410656 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a6657337..f27ff39c 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ tests: .PHONY: build_deckhand build_deckhand: ifeq ($(USE_PROXY), true) - docker build --network host -t $(IMAGE) --label $(LABEL) -f images/deckhand/Dockerfile . --build-arg http_proxy=$(PROXY) --build-arg https_proxy=$(PROXY) + docker build --network host -t $(IMAGE) --label $(LABEL) -f images/deckhand/Dockerfile . --build-arg HTTP_PROXY=$(PROXY) --build-arg HTTPS_PROXY=$(PROXY) else docker build --network host -t $(IMAGE) --label $(LABEL) -f images/deckhand/Dockerfile . endif