mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-08-20 17:23:22 +00:00
11 lines
369 B
Bash
Executable File
11 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
docker build --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 multus-webhook .
|