From ad6acfeaf9ada903bd8f2e0da3f8d5ef7c4a69a7 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Thu, 13 Mar 2025 20:22:27 +0400 Subject: [PATCH] fix: safer find|xargs --- Dockerfile.openj9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.openj9 b/Dockerfile.openj9 index 2143449..2102846 100644 --- a/Dockerfile.openj9 +++ b/Dockerfile.openj9 @@ -18,7 +18,7 @@ RUN mkdir /build/bootjdk /build/dist \ && tar -xzf jdk21.tar.gz --directory=/build/bootjdk --strip-components=1 \ && rm -f jdk21.tar.gz -RUN find /build/bootjdk -name '*.so' | xargs execstack -c +RUN find /build/bootjdk -name '*.so' -type f -print0 | xargs -0 -- execstack -c RUN git clone --single-branch --depth 1 \ https://github.com/ibmruntimes/openj9-openjdk-jdk21.git \