From e37fa08e742554c242526d83306a752e59810ae1 Mon Sep 17 00:00:00 2001 From: chris060986 Date: Wed, 23 Jan 2019 07:34:57 +0100 Subject: [PATCH] Fix docker build arg for https proxy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6c985a..a7ee40d 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ container: .container-$(DOTFILE_IMAGE) container-name Dockerfile.in > .dockerfile-$(OS)_$(ARCH) @docker build \ --build-arg HTTP_PROXY=$(HTTP_PROXY) \ - --build-arg=$(HTTPS_PROXY) \ + --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \ -t $(IMAGE):$(TAG) \ -f .dockerfile-$(OS)_$(ARCH) \ .