diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-26 09:52:54 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-26 09:53:27 -0400 |
commit | 154debb8048504ed65206b643b15ef17b83cec87 (patch) | |
tree | b1669fb989254d59e72ee911623fb3993a7fef9a /contrib/gate/Dockerfile | |
parent | 1077d2d0b72d027a01080c0d3ebdb7d99a969661 (diff) | |
download | podman-154debb8048504ed65206b643b15ef17b83cec87.tar.gz podman-154debb8048504ed65206b643b15ef17b83cec87.tar.bz2 podman-154debb8048504ed65206b643b15ef17b83cec87.zip |
Fix Dockerfile
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'contrib/gate/Dockerfile')
-rw-r--r-- | contrib/gate/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gate/Dockerfile b/contrib/gate/Dockerfile index aa827c385..f86709b00 100644 --- a/contrib/gate/Dockerfile +++ b/contrib/gate/Dockerfile @@ -12,7 +12,7 @@ COPY . $GOSRC # Install packages from dependencies.txt, ignoring commented lines # Note: adding conmon and crun so podman command checks will work RUN dnf -y install \ - $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) diffutils containers-common fuse-overlayfs conmon crun runc --exclude container-selinux \ + $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) diffutils containers-common fuse-overlayfs conmon crun runc --exclude container-selinux; \ sed -i -e 's|^#mount_program|mount_program|g' /etc/containers/storage.conf \ && dnf clean all |