Makefile HTTP fix

Putting build arguments to all caps to match Dockerfile ARG for
HTTP_PROXY HTTPS_PROXY

Change-Id: I9f6fdbfc202a483ca78562b95b010e913a410656
This commit is contained in:
Stacey Fletcher 2018-06-21 15:10:32 -05:00
parent 2ac59980e7
commit bb36db23ce
1 changed files with 1 additions and 1 deletions

View File

@ -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