mirror of https://github.com/linkerd/linkerd2.git
27 lines
754 B
Bash
Executable File
27 lines
754 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -ne 0 ]; then
|
|
echo "no arguments allowed for $(basename $0), given: $@" >&2
|
|
exit 64
|
|
fi
|
|
|
|
bindir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
rootdir="$( cd $bindir/.. && pwd )"
|
|
|
|
. $bindir/_docker.sh
|
|
. $bindir/_tag.sh
|
|
|
|
if [ -z "${PROXY_BUILD_CACHE_IMAGE:-}" ]; then
|
|
# If a cache is not specified use the default docker cache.
|
|
docker_build proxy "$(head_root_tag)" $rootdir/proxy/Dockerfile \
|
|
--build-arg="PROXY_UNOPTIMIZED=${PROXY_UNOPTIMIZED:-}"
|
|
|
|
else
|
|
# Otherwise, if a cache image is specified, use it.
|
|
docker_build proxy "$(head_root_tag)" $rootdir/proxy/Dockerfile \
|
|
--build-arg="PROXY_UNOPTIMIZED=${PROXY_UNOPTIMIZED:-}" \
|
|
--cache-from="$PROXY_BUILD_CACHE_IMAGE"
|
|
fi
|