mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
bb32ef83f7
Without correct proxy settings propagated to docker build it is not possible to build node-feature-discovery from behind a proxy server, e.g. in corporate networks. This patch fixes the issue by exporting all http(s) proxy related environment variables as build-time variables.
21 lines
697 B
Makefile
21 lines
697 B
Makefile
.PHONY: all
|
|
|
|
QUAY_DOMAIN_NAME := quay.io
|
|
QUAY_REGISTRY_USER := kubernetes_incubator
|
|
DOCKER_IMAGE_NAME := node-feature-discovery
|
|
|
|
VERSION := $(shell git describe --tags --dirty --always)
|
|
|
|
all: docker
|
|
|
|
# To override QUAY_REGISTRY_USER use the -e option as follows:
|
|
# QUAY_REGISTRY_USER=<my-username> make docker -e.
|
|
docker:
|
|
docker build --build-arg NFD_VERSION=$(VERSION) \
|
|
--build-arg http_proxy=$(http_proxy) \
|
|
--build-arg HTTP_PROXY=$(HTTP_PROXY) \
|
|
--build-arg https_proxy=$(https_proxy) \
|
|
--build-arg HTTPS_PROXY=$(HTTPS_PROXY) \
|
|
--build-arg no_proxy=$(no_proxy) \
|
|
--build-arg NO_PROXY=$(NO_PROXY) \
|
|
-t $(QUAY_DOMAIN_NAME)/$(QUAY_REGISTRY_USER)/$(DOCKER_IMAGE_NAME):$(VERSION) ./
|