When building a docker image you may need http proxy settings to download artefacts from the internet.
You can pass the http proxy settings (http_proxy
, https_proxy
) from the host system into the docker container during build:
$ docker build -t <image_tag> . --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy