quarkusio / quarkus-images

Set of container images delivered for Quarkus
Apache License 2.0
115 stars 76 forks source link

Install DNF package findutils in builder images #275

Closed Sopka closed 3 months ago

Sopka commented 3 months ago

The Gradle wrapper scripts necessitate the installation of the 'xargs' command. This command is supplied by the supplementary 'findutils' package.

ThoSap commented 3 months ago

I always added the findutils package to my custom Dockerfile.multistage-native Dockerfile so Gradle works. This is a welcome change, as I no longer need to do that, thanks!

RUN microdnf install -y --setopt=install_weak_deps=0 findutils \
 && microdnf clean all -y \
 && [ ! -d /var/cache/yum ] || rm -rf /var/cache/yum
cescoffier commented 3 months ago

Thanks!