mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
11 lines
268 B
Bash
Executable File
11 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
set -xeu
|
|
. /usr/lib/os-release
|
|
case $ID in
|
|
centos|rhel) dnf config-manager --set-enabled crb;;
|
|
fedora) dnf -y install dnf-utils 'dnf5-command(builddep)';;
|
|
esac
|
|
dnf -y builddep ./contrib/packaging/bootc.spec
|
|
# Extra dependencies
|
|
dnf -y install git-core
|