Skip to content

Commit

Permalink
Install DNF package findutils in builder images
Browse files Browse the repository at this point in the history
The Gradle wrapper scripts necessitate the installation of the
'xargs' command. This command is supplied by the supplementary
'findutils' package.
  • Loading branch information
Sopka committed Jun 6, 2024
1 parent 2479f0d commit 94b4fcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static Dockerfile getGraalvmDockerFile(String base, String version, Strin
Dockerfile df = Dockerfile.from(base);
df
.user("root")
.install("tar", "gzip", "gcc", "glibc-devel", "zlib-devel", "shadow-utils", "unzip", "gcc-c++")
.install("tar", "gzip", "gcc", "glibc-devel", "zlib-devel", "shadow-utils", "unzip", "gcc-c++", "findutils")
.install("glibc-langpack-en")
.module(new UsLangModule())
.module(new QuarkusUserModule())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static Dockerfile getMandrelDockerFile(String base, String version, Strin
df
.installer("microdnf")
.user("root")
.install("tar", "gzip", "gcc", "glibc-devel", "zlib-devel", "shadow-utils", "unzip", "gcc-c++")
.install("tar", "gzip", "gcc", "glibc-devel", "zlib-devel", "shadow-utils", "unzip", "gcc-c++", "findutils")
.install("glibc-langpack-en")
.module(new UsLangModule())
.module(new QuarkusUserModule())
Expand Down

0 comments on commit 94b4fcf

Please sign in to comment.