11 lines
317 B
Bash
11 lines
317 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Pulling Debian bootc image from remote registry..."
|
|
podman pull git.raines.xyz/particle-os/debian-bootc:minimal
|
|
|
|
echo "Building bootable image..."
|
|
bootc-image-builder build git.raines.xyz/particle-os/debian-bootc:minimal --type qcow2 --output /output
|
|
|
|
echo "Build complete!"
|
|
ls -la /output/
|