forked from github/multus-cni
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 .
|