mirror of https://github.com/linkerd/linkerd2.git
16 lines
331 B
Bash
Executable File
16 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ $# -ne 0 ]; then
|
|
echo "no arguments allowed for $(basename $0), given: $@" >&2
|
|
exit 64
|
|
fi
|
|
|
|
. bin/_docker.sh
|
|
. bin/_tag.sh
|
|
|
|
docker_build proxy "$(head_root_tag)" proxy/Dockerfile \
|
|
--build-arg="PROXY_SKIP_TESTS=${PROXY_SKIP_TESTS:-}" \
|
|
--build-arg="PROXY_UNOPTIMIZED=${PROXY_UNOPTIMIZED:-}"
|