wip
This commit is contained in:
parent
ba1f43fd8e
commit
0f9fbc9375
15 changed files with 381 additions and 297 deletions
18
build-and-push.sh
Executable file
18
build-and-push.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue