From 2e2ce6d725377fc95acdeb3ae8da4965606d77c2 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Mon, 2 Oct 2023 16:25:24 -0500 Subject: [PATCH] Fix build script --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 2e1d2559..8de06d1e 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -67,6 +67,6 @@ docker buildx build "${args[@]}" -t $base:$tag -t $base:latest -f Dockerfile . # Check if archs contains the current. If so, then output a message! if [[ " ${archs[@]} " =~ " ${current} " ]]; then - docker tag envbuilder:${arch} envbuilder:latest + docker tag $base:$tag envbuilder:latest echo "Tagged $current as envbuilder:latest!" fi