diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-22 12:38:04 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-22 12:38:04 -0500 |
commit | b21f342b5b0b2ac90303dd3770d878ff0f1f068c (patch) | |
tree | 190c0aff7f3ac1c38947dc001dfdc2f01c03b2d0 /contrib/gate/Dockerfile | |
parent | c8d64264c924833440237bf766a05db0cea56a1c (diff) | |
download | podman-b21f342b5b0b2ac90303dd3770d878ff0f1f068c.tar.gz podman-b21f342b5b0b2ac90303dd3770d878ff0f1f068c.tar.bz2 podman-b21f342b5b0b2ac90303dd3770d878ff0f1f068c.zip |
[CI:DOCS]Add conmon to gating image
the gating image now needs conmon to perform the commands check
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'contrib/gate/Dockerfile')
-rw-r--r-- | contrib/gate/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/gate/Dockerfile b/contrib/gate/Dockerfile index f7cd8f2b3..9042ddeb4 100644 --- a/contrib/gate/Dockerfile +++ b/contrib/gate/Dockerfile @@ -10,8 +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 RUN dnf -y install \ - $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) \ + $(grep "^[^#]" $GOSRC/contrib/dependencies.txt) conmon \ && dnf clean all # Install dependencies |