summaryrefslogtreecommitdiff
path: root/contrib/podmanimage/testing
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-07-19 06:39:59 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-07-19 06:40:01 -0400
commitb92bbfd768c97782d55d94d53c7b1250e9709b0a (patch)
tree823d41cb9a5eef4666c3e076c6a30d9b884b2b31 /contrib/podmanimage/testing
parent20c9f74c77683730455df4fb5e7722a192b78a92 (diff)
downloadpodman-b92bbfd768c97782d55d94d53c7b1250e9709b0a.tar.gz
podman-b92bbfd768c97782d55d94d53c7b1250e9709b0a.tar.bz2
podman-b92bbfd768c97782d55d94d53c7b1250e9709b0a.zip
Just restore protections of shadow-utils
Rather then reinstalling shadow-utils to fix permissions, just restore the correct permissions. [NO TESTS NEEDED] Since this does not affect Podman, just the prebuilt images on quay.io/podman. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'contrib/podmanimage/testing')
-rw-r--r--contrib/podmanimage/testing/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/podmanimage/testing/Dockerfile b/contrib/podmanimage/testing/Dockerfile
index 63b31252f..1090fed00 100644
--- a/contrib/podmanimage/testing/Dockerfile
+++ b/contrib/podmanimage/testing/Dockerfile
@@ -13,7 +13,7 @@ FROM registry.fedoraproject.org/fedora:latest
# Don't include container-selinux and remove
# directories used by yum that are just taking
# up space.
-RUN yum -y update; yum -y reinstall shadow-utils; yum -y install podman fuse-overlayfs --exclude container-selinux --enablerepo updates-testing; rm -rf /var/cache /var/log/dnf* /var/log/yum.*
+RUN yum -y update; rpm --restore --quiet shadow-utils; yum -y install podman fuse-overlayfs --exclude container-selinux --enablerepo updates-testing; rm -rf /var/cache /var/log/dnf* /var/log/yum.*
RUN useradd podman; \
echo podman:10000:5000 > /etc/subuid; \