diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-29 18:31:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 18:31:16 +0000 |
commit | 35aa994d124675a039c89f65fb4b1c684b79b89e (patch) | |
tree | fde6fde4777b5850702d8c7ae7e6ac29c867507c | |
parent | dd924c4078c1c0b3167b4f5bf8975ef4d6bc9e26 (diff) | |
parent | 64ec894c51334262fc1b5212c4116fa7dd4600dd (diff) | |
download | podman-35aa994d124675a039c89f65fb4b1c684b79b89e.tar.gz podman-35aa994d124675a039c89f65fb4b1c684b79b89e.tar.bz2 podman-35aa994d124675a039c89f65fb4b1c684b79b89e.zip |
Merge pull request #14775 from cevich/podman_image_comment
[CI:DOCS] Update podmanimage comment.
-rw-r--r-- | contrib/podmanimage/stable/Containerfile | 3 | ||||
-rw-r--r-- | contrib/podmanimage/testing/Containerfile | 3 | ||||
-rw-r--r-- | contrib/podmanimage/upstream/Containerfile | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/contrib/podmanimage/stable/Containerfile b/contrib/podmanimage/stable/Containerfile index 9121c5cde..70ff439d9 100644 --- a/contrib/podmanimage/stable/Containerfile +++ b/contrib/podmanimage/stable/Containerfile @@ -11,6 +11,9 @@ FROM registry.fedoraproject.org/fedora:latest # Don't include container-selinux and remove # directories used by dnf that are just taking # up space. +# TODO: rpm --setcaps... needed due to Fedora (base) image builds +# being (maybe still?) affected by +# https://bugzilla.redhat.com/show_bug.cgi?id=1995337#c3 RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ dnf -y install podman fuse-overlayfs \ diff --git a/contrib/podmanimage/testing/Containerfile b/contrib/podmanimage/testing/Containerfile index 16314a633..65c06f98c 100644 --- a/contrib/podmanimage/testing/Containerfile +++ b/contrib/podmanimage/testing/Containerfile @@ -11,6 +11,9 @@ FROM registry.fedoraproject.org/fedora:latest # Don't include container-selinux and remove # directories used by dnf that are just taking # up space. +# TODO: rpm --setcaps... needed due to Fedora (base) image builds +# being (maybe still?) affected by +# https://bugzilla.redhat.com/show_bug.cgi?id=1995337#c3 RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ dnf -y install podman fuse-overlayfs \ diff --git a/contrib/podmanimage/upstream/Containerfile b/contrib/podmanimage/upstream/Containerfile index c3a07a8d6..96e39c949 100644 --- a/contrib/podmanimage/upstream/Containerfile +++ b/contrib/podmanimage/upstream/Containerfile @@ -14,6 +14,9 @@ FROM registry.fedoraproject.org/fedora:latest # directories used by dnf that are just taking # up space. The latest podman + deps. come from # https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next/ +# TODO: rpm --setcaps... needed due to Fedora (base) image builds +# being (maybe still?) affected by +# https://bugzilla.redhat.com/show_bug.cgi?id=1995337#c3 RUN dnf -y update && \ rpm --setcaps shadow-utils 2>/dev/null && \ dnf -y install 'dnf-command(copr)' --enablerepo=updates-testing && \ |