Skip to content

Commit

Permalink
Merge pull request #662 from gerrod3/selinux-makes-no-sense
Browse files Browse the repository at this point in the history
Fix base image build having a selinux dependency collision
  • Loading branch information
lubosmj authored Sep 18, 2024
2 parents 87209a9 + 81c476e commit de9b8e2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions images/Containerfile.core.base
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN dnf -y module enable nginx:1.22
# of dependencies below. For example, drpm-devel.
RUN dnf -y install python${PYTHON_VERSION} python3-cryptography python${PYTHON_VERSION}-devel && \
dnf -y install openssl openssl-devel && \
dnf -y install openldap-devel && \
dnf -y install openldap-devel --exclude selinux* && \
dnf -y install wget git && \
dnf -y install python3-psycopg2 && \
dnf -y install redhat-rpm-config gcc cargo libffi-devel && \
Expand All @@ -54,7 +54,7 @@ RUN dnf -y install python${PYTHON_VERSION} python3-cryptography python${PYTHON_V
dnf -y install libpq-devel && \
dnf -y install python3-setuptools && \
dnf -y install swig && \
dnf -y install buildah --exclude container-selinux && \
dnf -y install podman fuse-overlayfs buildah --exclude container-selinux && \
dnf -y install xz && \
dnf -y install libmodulemd-devel && \
dnf -y install libcomps-devel && \
Expand All @@ -64,7 +64,6 @@ RUN dnf -y install python${PYTHON_VERSION} python3-cryptography python${PYTHON_V
dnf -y install libcurl-devel libxml2-devel sqlite-devel file-devel && \
dnf -y install ostree-libs ostree && \
dnf -y install skopeo && \
dnf -y install podman && \
dnf -y install sudo && \
dnf -y install zstd && \
dnf -y install jq && \
Expand Down

0 comments on commit de9b8e2

Please sign in to comment.