Skip to content

Commit

Permalink
Add fix for libdnf
Browse files Browse the repository at this point in the history
Signed-off-by: Enrique Belarte Luque <[email protected]>
  • Loading branch information
enriquebelarte committed Jul 2, 2024
1 parent aee1c80 commit 292e0d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions training/intel-bootc/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,13 @@ RUN . /etc/os-release \
&& mv /tmp/firmware/habanalabs /lib/firmware \
&& depmod -a ${KERNEL_VERSION}.${TARGET_ARCH}

RUN dnf install -y ${EXTRA_RPM_PACKAGES} \
RUN mv /etc/selinux /etc/selinux.tmp \
&& dnf install -y ${EXTRA_RPM_PACKAGES} \
cloud-init \
rsync \
&& dnf clean all \
&& ln -s ../cloud-init.target /usr/lib/systemd/system/default.target.wants
&& ln -s ../cloud-init.target /usr/lib/systemd/system/default.target.wants \
&& mv /etc/selinux.tmp /etc/selinux

ARG INSTRUCTLAB_IMAGE="quay.io/ai-lab/instructlab-intel:latest"

Expand Down

0 comments on commit 292e0d2

Please sign in to comment.