This commit is contained in:
lubiana 2025-07-24 11:35:37 +02:00
parent ba1f43fd8e
commit 0f9fbc9375
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
15 changed files with 381 additions and 297 deletions

18
build-and-push.sh Executable file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env sh
MANIFEST=git.hannover.ccc.de/lubiana/cheekylist
AMD=${MANIFEST}amd64
ARM=${MANIFEST}arm64
podman manifest exists $MANIFEST
if [ $? -eq 0 ]; then
podman manifest rm $MANIFEST
fi
podman manifest create $MANIFEST
podman build --arch=amd64 -t $AMD .
podman build --arch=arm64 -t $ARM .
podman manifest add $MANIFEST $AMD $ARM
podman manifest push $MANIFEST