Skip to content

Commit

Permalink
Merge pull request #275 from Sopka/feature/add-xargs-to-builder
Browse files Browse the repository at this point in the history
Install DNF package findutils in builder images
  • Loading branch information
cescoffier authored Jun 9, 2024
2 parents 2479f0d + 94b4fcf commit cca7f9f
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 cca7f9f

Please sign in to comment.