Add site map

This commit is contained in:
2025-06-15 15:41:17 +01:00
parent 3b96c59bcf
commit 4e860d14e6
9 changed files with 83 additions and 1 deletions

View File

@@ -5,6 +5,15 @@ set -x -o pipefail
tag=$1
build=$2
cat <<EOF >src/.buildinfo.json
{
"tag": "${tag}:${build}",
"date": "$(date -I)",
"host": "$(hostname -f)",
"user": "${USER}"
}
EOF
docker build -t ${tag}:latest .
if [[ $build != "" ]]; then
docker build -t ${tag}:${build} .