We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ce57f commit e45583fCopy full SHA for e45583f
1 file changed
Dockerfile
@@ -32,8 +32,7 @@ RUN \
32
echo "######################################################" && \
33
echo "### Import trusted certs before doing anything else ###" && \
34
35
- for FILE in `find /opt/certs \( -name "*.pem" -or -name "*.crt" \)`; \
36
- do cat $FILE >> /etc/pki/tls/certs/ca-bundle.crt ; done && \
+ find /opt/certs -type f \( -name "*.pem" -o -name "*.crt" \) -exec cat {} + >> /etc/pki/tls/certs/ca-bundle.crt && \
37
echo "###############################################" && \
38
echo "### Install ###" && \
39
echo "### -> Basics ###" && \
0 commit comments