diff options
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 |