#!/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 dockerfile=controller/Dockerfile validate_go_deps_tag $dockerfile ( bin/docker-build-base bin/docker-build-go-deps ) >/dev/null tag="$(head_root_tag)" docker_build controller $tag $dockerfile --build-arg CONDUIT_VERSION=$tag