From 205ae7c7d32b10e44e6e60f88d832192d7fd7070 Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Thu, 3 Mar 2022 12:48:33 -0500 Subject: [PATCH] fix tag to not have comma --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 8135836..6c162a7 100644 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ set -euxo pipefail for build in 5*; do - TAG=simcop2387/perl:$build + TAG=simcop2387/perl:$(echo $build | perl -pE 's/,/-/g') ( cd $build; docker build -t $TAG . docker push $TAG