From 4d826f0d0c83ac782db00c3109fe22e8be1d2d33 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Fri, 22 May 2020 14:46:06 -0500 Subject: [PATCH] [CI:DOCS]add crun to gating image the gating tests for commands needs crun to exercise itself Signed-off-by: Brent Baude --- contrib/gate/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gate/Dockerfile b/contrib/gate/Dockerfile index 9042ddeb48e8..a6d927e2bacf 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