forked from DarkCat09/docker-openj9-piped
fix: safer find|xargs
This commit is contained in:
parent
6b3da81ed3
commit
ad6acfeaf9
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ RUN mkdir /build/bootjdk /build/dist \
|
||||||
&& tar -xzf jdk21.tar.gz --directory=/build/bootjdk --strip-components=1 \
|
&& tar -xzf jdk21.tar.gz --directory=/build/bootjdk --strip-components=1 \
|
||||||
&& rm -f jdk21.tar.gz
|
&& 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 \
|
RUN git clone --single-branch --depth 1 \
|
||||||
https://github.com/ibmruntimes/openj9-openjdk-jdk21.git \
|
https://github.com/ibmruntimes/openj9-openjdk-jdk21.git \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue