Skip to content

Commit 1b89f50

Browse files
authored
Merge pull request #49 from slagle/libvirt-packages
Add libvirt packages to bootc image build
2 parents e712f6b + a8bded3 commit 1b89f50

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

bootc/Containerfile.centos9

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,23 @@ ARG PACKAGES="\
3838
"
3939
ARG ENABLE_UNITS="openvswitch"
4040

41-
RUN dnf -y install $PACKAGES && dnf clean all && systemctl enable $ENABLE_UNITS
41+
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
4258

4359
# Workaround openstack-network-scripts failing to run update-alternatives
4460
# See https://issues.redhat.com/browse/OSPRH-13141

0 commit comments

Comments
 (0)