We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e712f6b + a8bded3 commit 1b89f50Copy full SHA for 1b89f50
bootc/Containerfile.centos9
@@ -38,7 +38,23 @@ ARG PACKAGES="\
38
"
39
ARG ENABLE_UNITS="openvswitch"
40
41
-RUN dnf -y install $PACKAGES && dnf clean all && systemctl enable $ENABLE_UNITS
+ARG LIBVIRT_PACKAGES="\
42
+ libvirt \
43
+ libvirt-admin \
44
+ libvirt-client \
45
+ libvirt-daemon \
46
+ qemu-kvm \
47
+ qemu-img \
48
+ libguestfs \
49
+ libseccomp \
50
+ swtpm \
51
+ swtpm-tools \
52
+ edk2-ovmf \
53
+ ceph-common \
54
+ cyrus-sasl-scram \
55
+ "
56
+
57
+RUN dnf -y install $PACKAGES $LIBVIRT_PACKAGES && dnf clean all && systemctl enable $ENABLE_UNITS
58
59
# Workaround openstack-network-scripts failing to run update-alternatives
60
# See https://issues.redhat.com/browse/OSPRH-13141
0 commit comments