Retry JDK download when building Docker image
With this commit we instruct curl to retry with a backoff when downloading the JDK for the Elasticsearch Docker image. This avoids build failures on transient network issues. Note that this option requires curl 7.12.3 or better. Relates #37103 Relates #37113
This commit is contained in:
parent
de962b2f39
commit
e4ec51879e
|
@ -16,7 +16,7 @@ FROM centos:7 AS builder
|
|||
ENV PATH /usr/share/elasticsearch/bin:$PATH
|
||||
ENV JAVA_HOME /opt/jdk-${jdkVersion}
|
||||
|
||||
RUN curl -s ${jdkUrl} | tar -C /opt -zxf -
|
||||
RUN curl --retry 8 -s ${jdkUrl} | tar -C /opt -zxf -
|
||||
|
||||
# Replace OpenJDK's built-in CA certificate keystore with the one from the OS
|
||||
# vendor. The latter is superior in several ways.
|
||||
|
|
Loading…
Reference in New Issue