Fix docker build arg for https proxy

This commit is contained in:
chris060986 2019-01-23 07:34:57 +01:00
parent ca502bbe9b
commit e37fa08e74
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ container: .container-$(DOTFILE_IMAGE) container-name
Dockerfile.in > .dockerfile-$(OS)_$(ARCH) Dockerfile.in > .dockerfile-$(OS)_$(ARCH)
@docker build \ @docker build \
--build-arg HTTP_PROXY=$(HTTP_PROXY) \ --build-arg HTTP_PROXY=$(HTTP_PROXY) \
--build-arg=$(HTTPS_PROXY) \ --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \
-t $(IMAGE):$(TAG) \ -t $(IMAGE):$(TAG) \
-f .dockerfile-$(OS)_$(ARCH) \ -f .dockerfile-$(OS)_$(ARCH) \
. .