Skip to content

Commit

Permalink
Fix base image build having a selinux dependency collision
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
gerrod3 committed Sep 17, 2024
1 parent 87209a9 commit 81c476e
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 81c476e

Please sign in to comment.