fix tag to not have comma

This commit is contained in:
Ryan Voots 2022-03-03 12:48:33 -05:00
parent e31f5adef1
commit 205ae7c7d3

View file

@ -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