diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-26 14:11:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 14:11:55 -0400 |
commit | d6a7096d6195b695ba393c55ecb47c0c1ad6bd4e (patch) | |
tree | 0119816dba67a2de5522c6491b17957a7de09d43 | |
parent | 07ef44e2f3e4162fc28c3f3edcd739ab6e51526a (diff) | |
parent | 154debb8048504ed65206b643b15ef17b83cec87 (diff) | |
download | podman-d6a7096d6195b695ba393c55ecb47c0c1ad6bd4e.tar.gz podman-d6a7096d6195b695ba393c55ecb47c0c1ad6bd4e.tar.bz2 podman-d6a7096d6195b695ba393c55ecb47c0c1ad6bd4e.zip |
Merge pull request #6393 from rhatdan/dockerfile
Fix 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 |