mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 06:45:13 +01:00
Since we're running this under tmt, the "system" bootc binaries were built from source and injected into the integration disk image. No need to rebuild these inside of the test job itself. Signed-off-by: John Eckersberg <jeckersb@redhat.com>
17 lines
279 B
Bash
Executable File
17 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
cd "${0%/*}"
|
|
|
|
cp /usr/bin/bootc .
|
|
cp /usr/lib/bootc/initramfs-setup extra/usr/lib/dracut/modules.d/37bootc/bootc-initramfs-setup
|
|
|
|
mkdir -p tmp
|
|
|
|
podman build \
|
|
-t quay.io/fedora/fedora-bootc-bls:42 \
|
|
-f Containerfile \
|
|
--iidfile=tmp/iid \
|
|
.
|