diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-22 14:46:06 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-22 14:46:06 -0500 |
commit | 4d826f0d0c83ac782db00c3109fe22e8be1d2d33 (patch) | |
tree | 13722d2a95b84055d82ee85ff4bf2eafdf5c68f3 /contrib/gate/Dockerfile | |
parent | e1193c8703489b8aba5cc093a7339eff6d2559d8 (diff) | |
download | podman-4d826f0d0c83ac782db00c3109fe22e8be1d2d33.tar.gz podman-4d826f0d0c83ac782db00c3109fe22e8be1d2d33.tar.bz2 podman-4d826f0d0c83ac782db00c3109fe22e8be1d2d33.zip |
[CI:DOCS]add crun to gating image
the gating tests for commands needs crun to exercise itself
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'contrib/gate/Dockerfile')
-rw-r--r-- | contrib/gate/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gate/Dockerfile b/contrib/gate/Dockerfile index 9042ddeb4..a6d927e2b 100644 --- a/contrib/gate/Dockerfile +++ b/contrib/gate/Dockerfile @@ -10,9 +10,9 @@ ENV GOPATH="/var/tmp/go" \ COPY / $GOSRC # Install packages from dependencies.txt, ignoring commented lines -# Note: adding conmon so podman command checks will work +# Note: adding conmon and crun so podman command checks will work RUN dnf -y install \ - $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) conmon \ + $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) conmon crun \ && dnf clean all # Install dependencies |