mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-08-02 10:31:44 +03:00
[fix] reverted jdk downloads to ADD back, except of jdk6 and jdk7
This commit is contained in:
parent
377f284558
commit
9e31ffaa69
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java11
|
# installing java11
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java16
|
# installing java16
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java17
|
# installing java17
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java18
|
# installing java18
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java19
|
# installing java19
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java20
|
# installing java20
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java21
|
# installing java21
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java22
|
# installing java22
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java23
|
# installing java23
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java23
|
# installing java23
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java24
|
# installing java24
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java24
|
# installing java24
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
@ -18,19 +18,21 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
|
|||||||
##################################################################
|
##################################################################
|
||||||
# installing java8
|
# installing java8
|
||||||
##################################################################
|
##################################################################
|
||||||
RUN wget -c \
|
#RUN wget -c \
|
||||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
# --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||||
--no-check-certificate \
|
# --no-check-certificate \
|
||||||
--retry-connrefused \
|
# --retry-connrefused \
|
||||||
--tries=15 \
|
# --tries=15 \
|
||||||
--timeout=30 \
|
# --timeout=30 \
|
||||||
--waitretry=15 \
|
# --waitretry=15 \
|
||||||
--dns-timeout=30 \
|
# --dns-timeout=30 \
|
||||||
--read-timeout=30 \
|
# --read-timeout=30 \
|
||||||
--progress=dot:giga \
|
# --progress=dot:giga \
|
||||||
--no-clobber \
|
# --no-clobber \
|
||||||
-O /tmp/$(basename "${K_JDK_URL}") \
|
# -O /tmp/$(basename "${K_JDK_URL}") \
|
||||||
"${K_JDK_URL}"
|
# "${K_JDK_URL}"
|
||||||
|
|
||||||
|
ADD ${K_JDK_URL} /tmp
|
||||||
|
|
||||||
RUN mkdir -p ${K_JDK_DIR} && \
|
RUN mkdir -p ${K_JDK_DIR} && \
|
||||||
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user