From bdc358886ac1ddf51c80cf39b2d4ee58208936e6 Mon Sep 17 00:00:00 2001 From: "Tobias L. Maier" Date: Sun, 29 Apr 2018 17:41:20 +0200 Subject: [PATCH] Fix order --- hooks/build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks/build b/hooks/build index 6f4172e..73523fb 100755 --- a/hooks/build +++ b/hooks/build @@ -4,8 +4,9 @@ set -e while read -r docker_version compose_version; do - echo "# Building image ${image}..." image=${DOCKER_REPO}:${docker_version} + echo "# Building image ${image}..." + docker build \ --build-arg DOCKER_VERSION="${docker_version}" \ --build-arg COMPOSE_VERSION="${compose_version}" \