add helper scripts

This commit is contained in:
2025-02-04 21:01:10 +00:00
parent 1805d0531b
commit f4999f4d19
2 changed files with 24 additions and 0 deletions

11
build.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash --noprofile
set -x -o pipefail
tag=$1
build=0
docker build -t ${tag}:latest .
if [[ $build -gt 0 ]]; then
docker build -t ${tag}:${build} .
fi