Neale Pickett
·
2025-04-25
build.sh
1#! /bin/sh
2
3set -e
4
5cd $(dirname $0)/..
6
7target=imgme
8VERSION=$(cat CHANGELOG.md | awk -F '[][]' '/^## \[/ {print $2; exit}')
9tag=git.woozle.org/neale/$target:$VERSION
10
11echo "==== Building $tag"
12podman build \
13 --tag $tag \
14 -f build/Containerfile \
15 .