diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk11.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk11.j2 index b79cd4bbb..e5a83a0b9 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk11.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk11.j2 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk17.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk17.j2 index 61be3e2b3..4f75639e0 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk17.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk17.j2 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk21.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk21.j2 index 2a57cd2cd..8c33e3376 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk21.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk21.j2 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk8.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk8.j2 index 9d935d69f..5ddf56b94 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk8.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.jdk8.j2 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk7.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk7.j2 index c5cc1cee3..a77fdc0f5 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk7.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk7.j2 @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk8.j2 b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk8.j2 index a1577dfc6..36b6ec852 100644 --- a/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk8.j2 +++ b/bin/ansible/roles/atlassian.bitbucket/templates/dockerfile/template.Dockerfile.legacy.jdk8.j2 @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk11.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk11.j2 index 00eae8406..6387ec599 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk11.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk11.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk17.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk17.j2 index 338a3af87..bdfe19161 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk17.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk17.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk21.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk21.j2 index 69e529275..e75040025 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk21.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk21.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk6.j2 index b9a154f0f..a80d4ec3d 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk7.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk7.j2 index ab5c0320c..25c1ff129 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk7.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk7.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk8.j2 b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk8.j2 index 05ca5a7ea..5aff470ec 100644 --- a/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk8.j2 +++ b/bin/ansible/roles/atlassian.confluence/templates/dockerfile/template.Dockerfile.jdk8.j2 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.initial.jdk6.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.initial.jdk6.j2 index 672b4e1e3..9cd64cbf5 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.initial.jdk6.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.initial.jdk6.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk11.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk11.j2 index e0838210e..e893586df 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk11.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk11.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk17.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk17.j2 index 35a8fc378..ee625b405 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk17.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk17.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk21.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk21.j2 index 35a880859..ba900819f 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk21.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk21.j2 @@ -29,7 +29,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.j2 index 2ce0d410b..0ff8e824f 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.nosed.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.nosed.j2 index 7efe936c2..765eeb8c1 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.nosed.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk6.nosed.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.j2 index 37e5f414c..4e9989356 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.nosed.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.nosed.j2 index 1969a89eb..0335082c3 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.nosed.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk7.nosed.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk8.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk8.j2 index 41877e1c0..00d964e53 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk8.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.jdk8.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk6.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk6.j2 index 4a45d8728..a98ab0392 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk6.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk6.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk7.j2 b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk7.j2 index 881e84dff..9d64b80e5 100644 --- a/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk7.j2 +++ b/bin/ansible/roles/atlassian.crowd/templates/dockerfile/template.Dockerfile.old.jdk7.j2 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/bin/ansible/roles/atlassian.crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 index 0e7dbc16f..324447600 100644 --- a/bin/ansible/roles/atlassian.crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 index 548f07795..504801c60 100644 --- a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk7.j2 b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk7.j2 index beaa48904..c94f5cd4c 100644 --- a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk7.j2 +++ b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk7.j2 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk8.j2 b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk8.j2 index 460637196..c4aad7b78 100644 --- a/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk8.j2 +++ b/bin/ansible/roles/atlassian.fisheye-crucible/templates/dockerfile/template.Dockerfile.jdk8.j2 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/bin/ansible/roles/atlassian.fisheye/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.fisheye/templates/dockerfile/template.Dockerfile.jdk6.j2 index b26cb4310..3ca3d8732 100644 --- a/bin/ansible/roles/atlassian.fisheye/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.fisheye/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk11.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk11.j2 index f5bb7acde..26719dfb8 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk11.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk11.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk17.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk17.j2 index 39c0c355a..a98e7c114 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk17.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk17.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk6.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk6.j2 index ffb2283e1..2f043e5c4 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk6.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk6.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk7.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk7.j2 index 4a0af588b..b41a66257 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk7.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk7.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy.j2 index 08135536d..93da15e0c 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy2software.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy2software.j2 index 2dbaaa33c..a843b25b3 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy2software.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8-legacy2software.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8.j2 b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8.j2 index 5f344a587..c7a34eafe 100644 --- a/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8.j2 +++ b/bin/ansible/roles/atlassian.jira/templates/dockerfile/template.Dockerfile.jdk8.j2 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/bin/ansible/roles/gurock.testrail/templates/php70/main/Dockerfile.j2 b/bin/ansible/roles/gurock.testrail/templates/php70/main/Dockerfile.j2 index 579213244..4e50ef0e5 100644 --- a/bin/ansible/roles/gurock.testrail/templates/php70/main/Dockerfile.j2 +++ b/bin/ansible/roles/gurock.testrail/templates/php70/main/Dockerfile.j2 @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/bin/ansible/roles/gurock.testrail/templates/php71/main/Dockerfile.j2 b/bin/ansible/roles/gurock.testrail/templates/php71/main/Dockerfile.j2 index 55a9517d9..de01878f3 100644 --- a/bin/ansible/roles/gurock.testrail/templates/php71/main/Dockerfile.j2 +++ b/bin/ansible/roles/gurock.testrail/templates/php71/main/Dockerfile.j2 @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/bin/ansible/roles/gurock.testrail/templates/php72/main/Dockerfile.j2 b/bin/ansible/roles/gurock.testrail/templates/php72/main/Dockerfile.j2 index eeae4041f..8556dd556 100644 --- a/bin/ansible/roles/gurock.testrail/templates/php72/main/Dockerfile.j2 +++ b/bin/ansible/roles/gurock.testrail/templates/php72/main/Dockerfile.j2 @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/bin/ansible/roles/gurock.testrail/templates/php74/main/Dockerfile.j2 b/bin/ansible/roles/gurock.testrail/templates/php74/main/Dockerfile.j2 index 19524c7a5..48dda3715 100644 --- a/bin/ansible/roles/gurock.testrail/templates/php74/main/Dockerfile.j2 +++ b/bin/ansible/roles/gurock.testrail/templates/php74/main/Dockerfile.j2 @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/bin/ansible/roles/gurock.testrail/templates/php81/main/Dockerfile.j2 b/bin/ansible/roles/gurock.testrail/templates/php81/main/Dockerfile.j2 index 5cd682edb..a62455473 100644 --- a/bin/ansible/roles/gurock.testrail/templates/php81/main/Dockerfile.j2 +++ b/bin/ansible/roles/gurock.testrail/templates/php81/main/Dockerfile.j2 @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/games/steamcmd/Dockerfile b/games/steamcmd/Dockerfile index b61360fd9..905cdf702 100644 --- a/games/steamcmd/Dockerfile +++ b/games/steamcmd/Dockerfile @@ -1,7 +1,9 @@ -FROM epicmorg/edge +FROM epicmorg/debian:bookworm LABEL maintainer="EpicMorg DevTeam, developer@epicm.org" ARG DEBIAN_FRONTEND=noninteractive +ARG DOWNLOAD_URL=http://media.steampowered.com/installer/steamcmd_linux.tar.gz + ENV LD_LIBRARY_PATH=/steamcmd/linux64 ENV VALVE_FOLDER=/valve ENV VALVE_STEAMCMD_FOLDER=${VALVE_FOLDER}/steamcmd @@ -9,13 +11,26 @@ ENV VALVE_GAME_FOLDER=${VALVE_FOLDER}/game ENV VALVE_VOLUME_FOLDER=${VALVE_FOLDER}/volume ENV PATH="${VALVE_STEAMCMD_FOLDER}:${PATH}" -WORKDIR $VALVE_STEAMCMD_FOLDER +WORKDIR ${VALVE_STEAMCMD_FOLDER} ################################################################## # installing steamcmd ################################################################## RUN mkdir -p ${VALVE_STEAMCMD_FOLDER} ${VALVE_GAME_FOLDER} ${VALVE_VOLUME_FOLDER} -ADD http://media.steampowered.com/installer/steamcmd_linux.tar.gz $VALVE_STEAMCMD_FOLDER + +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /${VALVE_STEAMCMD_FOLDER}/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" RUN dpkg --add-architecture i386 && \ apt-get update && \ diff --git a/linux/ecosystem/atlassian/bitbucket/1/1.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/1/1.0.3/Dockerfile index 132a6a58c..84f2f2064 100644 --- a/linux/ecosystem/atlassian/bitbucket/1/1.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/1/1.0.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/1/1.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/1/1.1.2/Dockerfile index 06d62d4ae..e0320ff04 100644 --- a/linux/ecosystem/atlassian/bitbucket/1/1.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/1/1.1.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/1/1.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/1/1.2.1/Dockerfile index 974b90cfd..c37fc1b86 100644 --- a/linux/ecosystem/atlassian/bitbucket/1/1.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/1/1.2.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/1/1.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/1/1.2.4/Dockerfile index 29c2de2a5..568ed3cd9 100644 --- a/linux/ecosystem/atlassian/bitbucket/1/1.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/1/1.2.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/1/1.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/1/1.3.1/Dockerfile index 0c018cb3b..bb2b49508 100644 --- a/linux/ecosystem/atlassian/bitbucket/1/1.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/1/1.3.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.0.3/Dockerfile index 1dd0116ac..0a6979b70 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.0.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.1.2/Dockerfile index 25db50eac..6f99d25e3 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.1.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.0/Dockerfile index 7fc667c99..c15df38a1 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.1/Dockerfile index 05d7049f8..24cca3aa8 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.2/Dockerfile index 3b0ba7891..3923a8ece 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.3/Dockerfile index 5c17d9a0a..39c36cd50 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.4/Dockerfile index e5e3e2186..9a140f8ca 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.10.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.10.5/Dockerfile index f124f8f70..91eba697d 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.10.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.10.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.3/Dockerfile index bd369e82c..fe16f8fad 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.4/Dockerfile index 2d82f1ca9..19bc8ff89 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.5/Dockerfile index cbd4cf39c..a497db006 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.6/Dockerfile index a5d01af40..e28c0072c 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.6/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.7/Dockerfile index e7a452438..b7627262d 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.7/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.8/Dockerfile index 3d0a913c6..5ea4e66b5 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.8/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.11.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.11.9/Dockerfile index 8d1b2de69..b81213853 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.11.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.11.9/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.0/Dockerfile index ae8af36f0..062ea06dd 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.1/Dockerfile index 462642e74..7830b5797 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.2/Dockerfile index d11925243..72ce5a756 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.3/Dockerfile index dc36d171a..dd5c11d10 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.4/Dockerfile index ebb71fb03..0dad48952 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.5/Dockerfile index d298d7408..81e434a8e 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.12.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.12.6/Dockerfile index 54ba1cfa2..599d25fe7 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.12.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.12.6/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.2.0/Dockerfile index 3d9f40f52..942e063ad 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.2.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.3.1/Dockerfile index 9c82c770c..f945aa1f2 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.3.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.4.2/Dockerfile index fbdb26dd9..38514884c 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.4.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.5.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.5.4/Dockerfile index ad0a242b3..e9ed07984 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.5.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.6.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.6.5/Dockerfile index 623f21405..3f909b745 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.6.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.7.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.7.6/Dockerfile index b6d8fb555..2543ceb8e 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.7.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.7.6/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.8.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.8.4/Dockerfile index 66461fbf7..8ade72b0d 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.8.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.8.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.8.5/Dockerfile index f898b097d..460ba116a 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.8.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.9.1/Dockerfile index 7ca5feb7e..a2a24aadd 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.9.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.9.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.9.2/Dockerfile index 1f8dbbf9f..f6c8aecb0 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.9.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.9.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.9.3/Dockerfile index 04660dd59..e648d6229 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.9.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.9.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.9.4/Dockerfile index 03e545d75..a23267fbe 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.9.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.9.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/2/2.9.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/2/2.9.5/Dockerfile index aa9defdc9..d064de95a 100644 --- a/linux/ecosystem/atlassian/bitbucket/2/2.9.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/2/2.9.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.1/Dockerfile index 0ef0e5ad7..c50091dbb 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.4/Dockerfile index 6790a7ca0..97ff185fa 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.5/Dockerfile index aa96881b7..44d09aed7 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.6/Dockerfile index cf42c47fc..64653ba1b 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.6/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.7/Dockerfile index 7ab890a39..98ac84727 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.7/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.0.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.0.8/Dockerfile index 0610746d9..e87f05ecd 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.0.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.0.8/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.0/Dockerfile index db1bc2464..bf5e1b0a8 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.1/Dockerfile index d6323d8f0..1736ac11e 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.3/Dockerfile index f81a622d4..6a8ce39a3 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.4/Dockerfile index 9cc6a274e..718e8eca4 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.5/Dockerfile index bb948c2ca..3abeba678 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.1.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.1.7/Dockerfile index b68436a1a..4933af318 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.1.7/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.10.0/Dockerfile index ad7ed75a7..267e88f89 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.10.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.10.2/Dockerfile index 483893bdb..948c0c6e6 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.10.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.10.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.10.3/Dockerfile index bc13c7c5e..d8c78b39d 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.10.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.10.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.10.4/Dockerfile index 3a54d0444..bb12c353b 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.10.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.0/Dockerfile index d996cfdd1..45f43dc62 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.1/Dockerfile index bff44903c..d1849e97c 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.2/Dockerfile index 8ed3de0fb..fbebb35fb 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.3/Dockerfile index 2561be537..54c1109fc 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.4/Dockerfile index 57c1b748a..2d5211d09 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.11.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.11.6/Dockerfile index 7ad71cb3b..3d6223ef8 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.11.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.11.6/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.2.0/Dockerfile index b85007867..66248e8b7 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.2.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.2.2/Dockerfile index 84c2d7379..248d4d7b1 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.2.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.2.4/Dockerfile index 61efdad98..3e8bb9bb3 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.2.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.2.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.2.5/Dockerfile index 512e632c7..5223c8ac5 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.2.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.2.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.2.7/Dockerfile index da274c34e..8e07a19d2 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.2.7/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.3.0/Dockerfile index fa2115db3..cd905e906 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.3.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.3.1/Dockerfile index d3cf0f3ac..baff95b62 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.3.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.3.2/Dockerfile index 081b783be..58b54d472 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.3.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.3.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.3.3/Dockerfile index e3e924a4a..9e81ece08 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.3.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.3.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.3.5/Dockerfile index 6cf18e2c9..819d642e4 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.3.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.4.0/Dockerfile index cff1cacd1..11ee105c9 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.4.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.4.1/Dockerfile index dbf23f6da..ad327497e 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.4.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.4.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.4.3/Dockerfile index 5843b273e..0feff14eb 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.4.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.4.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.4.5/Dockerfile index e8fcbbb60..afdf214a3 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.4.5/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.5.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.5.0/Dockerfile index 6c1100a62..0375b029d 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.5.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.5.1/Dockerfile index 3642dc400..b6545c4d6 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.5.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.6.0/Dockerfile index 904a065b1..06e1aa8a2 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.6.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.6.1/Dockerfile index 849eb13d2..bfac7888d 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.6.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.7.0/Dockerfile index e50af6e11..c507822a0 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.7.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.7.1/Dockerfile index f398f9432..0c639a2ca 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.7.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.7.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.7.2/Dockerfile index 746580258..924786315 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.7.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.7.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.7.3/Dockerfile index ee3a0ae5e..5307c26c7 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.7.3/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.7.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.7.4/Dockerfile index c403a467a..6286e9dfc 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.7.4/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.8.0/Dockerfile index 6268acf70..5266ef1de 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.8.0/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.8.1/Dockerfile index 0fc3bda7d..b27b01207 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.8.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.9.1/Dockerfile index 5072cb85a..3e1196dde 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.9.1/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/3/3.9.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/3/3.9.2/Dockerfile index dac5bfe23..d2a7a4959 100644 --- a/linux/ecosystem/atlassian/bitbucket/3/3.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/3/3.9.2/Dockerfile @@ -30,7 +30,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.1/Dockerfile index 93fb21f85..eb0a2501b 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.2/Dockerfile index c06a83a3e..00ee6c4b3 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.3/Dockerfile index 057d3ad85..9a579e20e 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.4/Dockerfile index 1876b0166..3c4590350 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.6/Dockerfile index e8ac3fa81..bb51da7c6 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.7/Dockerfile index 423ea801d..51184dd44 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.0.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.0.8/Dockerfile index 580c88b35..b16bc0290 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.0.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.0.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.1.0/Dockerfile index 15f5af4db..18e4471a6 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.1.3/Dockerfile index 709463c3a..1cd15c510 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.1.4/Dockerfile index 2a5712b31..4dd53f3ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.1.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.1.6/Dockerfile index 89e5dd792..536797d80 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.1.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.10.0/Dockerfile index 006953994..c6e103f80 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.10.1/Dockerfile index 2ef2ebabe..cb7720e0e 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.10.2/Dockerfile index 10ba934a2..d09473b73 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.11.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.11.1/Dockerfile index e5de57015..2eed295fe 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.11.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.11.2/Dockerfile index d09eddb1b..7d158838f 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.12.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.12.0/Dockerfile index 2999211d4..a742571e7 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.12.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.12.1/Dockerfile index 0c6ae83c5..409b894ff 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.13.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.13.0/Dockerfile index 1eba1c928..bbda20ef0 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.13.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.13.1/Dockerfile index a4d69c4a3..b745f720c 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.0/Dockerfile index 087848992..af2d52c78 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.1/Dockerfile index 7f664cfc7..b768bb50f 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.10/Dockerfile index 51987b361..42d694b9d 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.11/Dockerfile index 48221befd..8fe088272 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.12/Dockerfile index c9ca05ec8..17f4f1bab 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.2/Dockerfile index 43b22ccff..602a63fcc 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.3/Dockerfile index ffa1f094b..01bb5748f 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.4/Dockerfile index 56f0fc9fe..918ecc7d4 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.5/Dockerfile index 5d9d49682..e2a39788b 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.6/Dockerfile index 47d514f11..758e9dd53 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.7/Dockerfile index 41f952f62..80c8be8fd 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.8/Dockerfile index 320ed7999..ff5003737 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.14.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.14.9/Dockerfile index 41a5ed6e9..bd460b1d2 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.14.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.14.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.2.0/Dockerfile index e02a68390..93ba1ee3f 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.2.1/Dockerfile index 2802ceb46..4de847831 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.2.2/Dockerfile index f7a3f2114..5eb7941ba 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.2.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.2.3/Dockerfile index e211e8e8b..cbb4cad8a 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.3.0/Dockerfile index 6d3f653b8..a33720a82 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.3.1/Dockerfile index 69eed3c16..0aa4f974e 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.3.2/Dockerfile index d37206fb8..f37966732 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.3.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.3.3/Dockerfile index 5a2debf96..aec82873d 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.4.0/Dockerfile index c8e93affa..6abe95cdc 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.4.1/Dockerfile index e0e1b95d9..c10246522 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.4.2/Dockerfile index e697c18db..e068d1d1d 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.4.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.4.4/Dockerfile index a146b2d4b..9d7a46bc9 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.5.1/Dockerfile index fe9433225..eb17a2d68 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.5.2/Dockerfile index 6afb193a0..86b0f1183 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.5.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.5.3/Dockerfile index 76c8cf003..56a54d4f9 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.6.0/Dockerfile index f052d2dd2..f85ca98e1 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.6.1/Dockerfile index 38c057874..aa0443a2b 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.6.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.6.2/Dockerfile index 5630c1b48..a16252ce7 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.6.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.6.3/Dockerfile index 6410d1dc7..60500264b 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.6.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.6.4/Dockerfile index a4f190323..58c1fe33e 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.7.1/Dockerfile index aedb9c6fb..6de9a8053 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.7.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.7.2/Dockerfile index 75f7ee309..0620ef76f 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.0/Dockerfile index a4f7a6f94..a318a1856 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.1/Dockerfile index 9f344f01a..40ac50484 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.2/Dockerfile index 6bb878df6..55359b19b 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.3/Dockerfile index 4be6806be..ced831ff6 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.4/Dockerfile index f90bfab81..f6ddb8a36 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.5/Dockerfile index b7f66abe4..e0c84a264 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.8.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.8.6/Dockerfile index 45695c0b3..d225730f7 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.8.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.8.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.9.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.9.0/Dockerfile index 3de1f6030..79bbc74bb 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/4/4.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/4/4.9.1/Dockerfile index e2010a229..a5ff750aa 100644 --- a/linux/ecosystem/atlassian/bitbucket/4/4.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/4/4.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.10/Dockerfile index def14656f..759bcf47a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.2/Dockerfile index 7e1649efd..d6346ad5d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.4/Dockerfile index 2a243b22d..604a8900a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.5/Dockerfile index 271ff1609..a7b9d032c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.6/Dockerfile index 6b564445e..ea8f604a2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.7/Dockerfile index f5186f28e..b258820ba 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.8/Dockerfile index d4cad4b10..f38cb482b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.0.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.0.9/Dockerfile index cfb5c43f5..b413b1769 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.0.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.0.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.1/Dockerfile index a623b482a..4816b0c93 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.2/Dockerfile index f1b0bf1d7..a4a25fafa 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.3/Dockerfile index 173d0d2fb..b92aa4a86 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.4/Dockerfile index 4bf01075b..d5f6bc3c2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.5/Dockerfile index a70b6d922..d7051f9dc 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.6/Dockerfile index 93d2c003f..8a06c4752 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.7/Dockerfile index d58e64e39..c76d8d8f3 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.8/Dockerfile index 723acc733..8ff1babbc 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.1.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.1.9/Dockerfile index 770ebf9e0..21ab1c11c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.1.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.10.0/Dockerfile index c567c41a7..cccf5ebf4 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.10.1/Dockerfile index 3432ce24c..7e313359d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.10.2/Dockerfile index 57e00937f..c1c0a55da 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.10.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.10.3/Dockerfile index 8cdb80149..a4531d347 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.10.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.10.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.10.4/Dockerfile index 029ab9fef..b25a68f30 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.10.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.11.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.11.1/Dockerfile index 97a0b2e7b..3ad0ed8ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.11.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.11.2/Dockerfile index 3081a33c9..31998c20d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.11.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.11.3/Dockerfile index f6b3adf6c..0834b775a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.11.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.11.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.11.4/Dockerfile index 5d9e6cb39..4e8ae4b2c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.11.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.11.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.12.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.12.0/Dockerfile index 8d4f4edef..653bdfe16 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.12.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.12.1/Dockerfile index c7437f38e..4e80163cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.12.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.12.2/Dockerfile index bd24f3b4d..b17932fb2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.12.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.12.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.12.3/Dockerfile index 88733222f..128065e7f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.12.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.12.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.12.4/Dockerfile index a1b994c6f..eedffbf24 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.12.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.0/Dockerfile index 62a08114b..a2b8267e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.1/Dockerfile index 32be0f071..f0d151c87 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.3/Dockerfile index 2ae4158e3..36b4c4452 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.4/Dockerfile index 0b9d7fc1d..bfcd639d7 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.5/Dockerfile index 1c80de50b..a8759251c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.13.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.13.6/Dockerfile index a5c48e9de..abac68ec2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.13.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.14.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.14.0/Dockerfile index 4b712e180..f3d50ff1f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.14.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.14.1/Dockerfile index 061814f03..0ce700e7c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.14.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.14.2/Dockerfile index 43a1f264e..acddd0f8e 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.14.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.14.3/Dockerfile index dc7130528..8ced7414a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.14.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.14.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.14.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.14.4/Dockerfile index 9a7b9e8d2..c93a85b44 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.14.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.14.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.15.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.15.0/Dockerfile index a3bd84302..a4521ef2c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.15.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.15.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.15.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.15.1/Dockerfile index 899abe86c..084f810b1 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.15.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.15.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.15.2/Dockerfile index 021f1b614..52251bef7 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.15.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.15.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.15.3/Dockerfile index a82c317c1..2cd4bbb3b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.15.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.15.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.0/Dockerfile index 8328bdfba..068a37a93 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.1/Dockerfile index c81e98f7a..be6ac4dab 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.10/Dockerfile index 1280b1ef0..73e570eda 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.11/Dockerfile index a75a52619..b3c87ac26 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.2/Dockerfile index 53616477c..cf4ab370f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.3/Dockerfile index 3dbbe7b4e..558150fa1 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.4/Dockerfile index 543cc8548..a48d0192e 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.5/Dockerfile index 934425807..848072f78 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.6/Dockerfile index ab2190836..b170c4fd4 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.7/Dockerfile index 7d9575ce1..fea6a2146 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.8/Dockerfile index c3b56ef9c..988126ef8 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.16.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.16.9/Dockerfile index 7ee71cd64..eed6b5161 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.16.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.16.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.0/Dockerfile index 82fad2d46..47b519edf 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.1/Dockerfile index 945377b30..e57e743c0 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.2/Dockerfile index 237403270..b44e1cf0d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.3/Dockerfile index fb4ab709a..6de462e9f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.4/Dockerfile index 4b17bd42b..f652cf0ba 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.5/Dockerfile index e622e7036..9344e2b5b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.6/Dockerfile index 4d8ab423b..6a627a48d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.7/Dockerfile index 52c7d8179..ffebffcd4 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.2.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.2.8/Dockerfile index 8d3350877..31746b48f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.2.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.0/Dockerfile index c8318e4b2..c6ff5bdaf 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.1/Dockerfile index 6a62e2de3..98566de05 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.2/Dockerfile index fb156ff07..0b98671e8 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.3/Dockerfile index 5cfd96517..0434da389 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.4/Dockerfile index 1b8d1b61d..dff4d9cfa 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.5/Dockerfile index 9ea296968..5c369d2b9 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.6/Dockerfile index 9ef0a3f64..b94105a62 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.3.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.3.7/Dockerfile index 9282008f6..ae281d878 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.3.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.0/Dockerfile index 5047daa33..e6750384a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.1/Dockerfile index e3967c09f..3794dd1e0 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.2/Dockerfile index d69d65bc4..713cf150d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.3/Dockerfile index 3b3f56b37..adff37b5c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.4/Dockerfile index 5fcd87f44..ee3fda79e 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.6/Dockerfile index d5a0eec9a..97ea7f22b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.7/Dockerfile index fef020748..456643f65 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.8/Dockerfile index 00538fff2..368059355 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.4.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.4.9/Dockerfile index ed39b4424..760444a17 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.4.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.4.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.0/Dockerfile index fe08a93ea..51b604483 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.1/Dockerfile index 707ed96f2..ac8625fba 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.2/Dockerfile index d148f1fdc..43747082b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.3/Dockerfile index 03ff36359..04a611afe 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.4/Dockerfile index 772947bcd..9eadb449a 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.5/Dockerfile index 4fda3ea88..5b556f58f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.6/Dockerfile index bc54cecd6..4a693ac00 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.7/Dockerfile index 35b17b605..cfae80e68 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.8/Dockerfile index d7c8aca3f..98968d78b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.5.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.5.9/Dockerfile index 6f2f9d1b3..920eb5589 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.5.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.5.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.1/Dockerfile index fc656abc7..ad035716b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.2/Dockerfile index 9fe01b233..5ece3c161 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.3/Dockerfile index 8fd10c9d3..3d0be1c8c 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.4/Dockerfile index efcc2dac6..133b44e52 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.5/Dockerfile index 55c66ae96..3d5ee2c0f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.6.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.6.6/Dockerfile index 9668edc26..d9fb37e0f 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.6.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.7.0/Dockerfile index 8be447bd3..79fc907bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.7.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.7.1/Dockerfile index 0fefdce1d..0f15fd537 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.7.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.7.2/Dockerfile index 44f538193..f8097be22 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.7.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.7.3/Dockerfile index 87704ab41..9435ba33b 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.7.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.7.4/Dockerfile index 1ac8d98ce..72c00aff8 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.7.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.8.0/Dockerfile index db6ab2750..108ee4eb2 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.8.1/Dockerfile index 2f071f157..91ad9ea27 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.8.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.8.2/Dockerfile index 78dbe70f7..02dea7205 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.8.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.8.3/Dockerfile index 41fc1f53a..2fc7e83ad 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.8.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.8.4/Dockerfile index ada6dce77..a5bab33fc 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.8.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.9.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.9.0/Dockerfile index 427a41caa..cbc76afb9 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.9.1/Dockerfile index bed53ac50..96698a1b9 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/5/5.9.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/5/5.9.2/Dockerfile index 5b24263e0..90272903d 100644 --- a/linux/ecosystem/atlassian/bitbucket/5/5.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/5/5.9.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile index 501591e2e..bfa50da44 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile.jdk11 index b672be245..5e2c11158 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile index 2d8e22a11..497251f64 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile.jdk11 index 67c2d9b50..58d07bda4 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile index 074e0311a..0847f03c1 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile.jdk11 index 74b9e7b10..3f133c003 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile index 6cd27b461..ce9ad89a5 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile.jdk11 index af29da1d7..31e757bea 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile index d22ae8e0d..9a8184859 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile.jdk11 index ff5cfaa2d..84b73974b 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile index ba511f4dc..cb8561825 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile.jdk11 index 789608ef5..c8ba70df8 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile index 1654b97d1..142121766 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile.jdk11 index 594fb87ed..c48921965 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile index 02aa93dea..7ed559519 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile.jdk11 index 9e5742282..6aa066fde 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile index 493f424e1..6333ecc72 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile.jdk11 index 6085ac60d..0078a10c2 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile index 64a6977e4..eec44d609 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile.jdk11 index c1199bb1d..690a416b9 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile index a135c3fb5..cff717815 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile.jdk11 index f27ed4c89..97ffa2715 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.0.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile index fabf4f7ec..eee5c2d43 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile.jdk11 index 86c249e87..e2f8c4fcc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile index ff7c4a182..ac4ce4d47 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile.jdk11 index 18b967a56..70b5099f5 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile index b105cf6ec..576597486 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile.jdk11 index 58523f077..69842018e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile index ca2247365..2ae4a8616 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile.jdk11 index 76308e25b..5428a6bac 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile index 95b95bcf9..d2a3f0541 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile.jdk11 index 2d7d2c580..ed4eeb985 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile index 44efd1542..305453f46 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile.jdk11 index b16c850bb..9d22d5faa 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile index 0da47eba4..9e6ce50de 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile.jdk11 index 21c121c0e..8a7104469 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile index f6abfacf4..0941068a2 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile.jdk11 index 10ec75190..f9401a246 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile index 0ef0b2e16..82dbe1517 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile.jdk11 index e4996af0e..2896ab68e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile index 5e240370f..71653c41f 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile.jdk11 index 1fc5ea0df..62074a597 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.1.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile index bad3dbc8b..b44f3955b 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile.jdk11 index 602ab023b..a925eb89b 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile index 4bd5ca2b6..d9b07276d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile.jdk11 index 06a3e8df6..02a838dd5 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile index 257367789..f5466d134 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile.jdk11 index 57ba0af81..1663a5615 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile index d894ce6da..0d05b4a1d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile.jdk11 index 8291fc6ed..2cb3fc7b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile index 34f82b591..4bf9ae9bb 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile.jdk11 index 6dde58059..89cf71f1d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile index 0bc9c3cf7..9bcb0885a 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile.jdk11 index 27f44bcce..fbacde564 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile index 3b3c09337..179b6302f 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile.jdk11 index 1e9d287a2..8f11f3286 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile index e87ce40c6..f0b36d737 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile.jdk11 index efcdb4bbc..5b386c5fc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile index ee9f7beab..58ff14a7c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile.jdk11 index 2c4963351..2edd147f2 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile index 4d3c9c2ca..ead76fa30 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile.jdk11 index 484881d19..f75ae0597 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile index 26ccf47b8..7a6b82cd8 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile.jdk11 index 8b4817c3c..28a320212 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile index 9ef1ecf0e..3b6d2a289 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile.jdk11 index a32e6a2df..f180bb093 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile index c5eed412e..e4eb30407 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile.jdk11 index d6e172432..4cf808061 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile index 543e61576..7f3fe80ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile.jdk11 index 30c337d88..4da2214da 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile index e9934da76..655d39394 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile.jdk11 index bdecbd0b1..d0d5e61bc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile index 54b455730..e3dc522c4 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile.jdk11 index a28ece4a6..23651a600 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile index f5c7c5bd4..dfba0557d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile.jdk11 index a1705cc93..64c470d6e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.10.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile index fe633f33c..e61590b89 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile.jdk11 index 31e6610ea..bebbca3ab 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile index 325971f6d..8cc869e5c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile.jdk11 index 98b0aea2c..a74ea4dbf 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile index 506096b79..029737b4d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile.jdk11 index 6b7ca8d97..a3eea2c0b 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile index 2e7112dcd..7d56e0f60 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile.jdk11 index 0739f151b..b7996d0fc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile index 21ba2d92c..52ea2b9b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile.jdk11 index 7a47f1e9b..9093536aa 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile index 23e734d26..f5fff0936 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile.jdk11 index c3acf93ad..da06c9396 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile index 1f29fced0..812e524e9 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile.jdk11 index ddd7d5a76..e0758e548 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile index ec9860cce..125c87347 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile.jdk11 index 185d61a12..ecebbf0e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.2.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile index d1049331f..0b10d626c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile.jdk11 index 29ebbeb31..d5cad59ca 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile index f81c69ded..c2d1a511f 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile.jdk11 index 62dd93d55..d201cfae4 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile index 21f27c0b8..5e228242f 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile.jdk11 index bdb04fe3b..ef901a697 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile index 82da4bc3a..4ad96cd3a 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile.jdk11 index ac0572403..1939a8226 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile index 1d3df0f66..ae59cc1cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile.jdk11 index d5f697f8b..05cb40dfc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile index b6a6bc3a1..964e932f9 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile.jdk11 index dc8f7d051..42c3f81e4 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile index 3ba53ea10..c9854c135 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile.jdk11 index d5c86b820..cf4afd070 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.3.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile index 5aa0c687b..a40e5762e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile.jdk11 index 355232f83..6410236f4 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile index f6b268b50..25ba2c8fa 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile.jdk11 index 78ef8870a..2e8f7929f 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile index 9244dbb4b..0a3da2e3e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile.jdk11 index 59bb30639..3576c1885 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile index 709708483..35ff7fdb1 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile.jdk11 index fc5831ad1..388a07509 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile index 4fbcd259d..1fd819bf1 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile.jdk11 index ef8272228..d3585c76c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.4.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile index 3554259ce..f73750616 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile.jdk11 index bf9d6df46..3fb5c0e0e 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile index 171e3a020..568cdcf86 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile.jdk11 index 011a32da7..7864489cd 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile index 0dd28b284..1ee930b41 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile.jdk11 index 13fcebaf9..e7fdd2838 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.5.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile index 5479bdd10..7e9be5caf 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile.jdk11 index 77c74ba01..72cb1f6ea 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile index ac1931e98..29c72daea 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile.jdk11 index d84d57e1f..d454b59ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile index a37769f6b..535739fef 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile.jdk11 index 69db58e84..9bffca1f8 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile index 6d77df4d7..be3654aed 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile.jdk11 index 991a23a04..47a4b2a58 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile index 54b21ff36..08c4c82ef 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile.jdk11 index 8a881cd30..9a52bf495 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.6.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile index 4cc3624fa..801f7914a 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile.jdk11 index be0b6fce2..e5c9745a9 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile index f6f0cdfe4..33eb60e7c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile.jdk11 index 23c6f82ac..ec118d040 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile index f1a9a1c50..2cc6f8219 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile.jdk11 index c0e45d0ec..eb36e42a6 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile index 1267b19b2..b4a6780ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile.jdk11 index d0ee18246..e89cb3922 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile index 6b2b9c133..4b4ccd8e8 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile.jdk11 index b912e95fa..ce13c1aa6 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile index 69c5176c3..439c7e398 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile.jdk11 index 8d94c82c4..b1bf1c01b 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.7.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile index f8f56a899..ec1f5df18 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile.jdk11 index 3563eb3de..af1e10350 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile index 86bced9a3..c6f662368 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile.jdk11 index 0b63df71f..063d56a89 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile index 4f0bbcb80..4f07870dc 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile.jdk11 index e82e0ea1f..ffa5c7538 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile index 317ceddef..b572e3fc3 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile.jdk11 index 7add2f236..85625cb5c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile index 9eccbeed3..9fe9b5683 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile.jdk11 index e7c0a029d..62410742d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.8.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile index 70a8a870d..6ceead47d 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile.jdk11 index 7243ffbcf..275d314b5 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile index 312184b1b..feb69e056 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile.jdk11 index b81124643..ce146c514 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile index c8cb1288b..58e23f563 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile.jdk11 index 33761a4d6..1d040a87c 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile index ed23e9943..8a64a1349 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile.jdk11 index 78275e26c..f7e7a2436 100644 --- a/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/6/6.9.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile index c23e60c45..20d26cd5b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile.jdk11 index 2873f640d..41fe4a02a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile index d39a23ec7..217a0345a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile.jdk11 index ad498ef11..6764561bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile index 03ddcd7eb..a00c1041f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile.jdk11 index c8efb4df5..cbe1f1c23 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile index d7e61ce27..720c90ce5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile.jdk11 index 63ecdbcbc..260596a79 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile index 4b6d65057..501fa0175 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile.jdk11 index 117d228eb..92ec8df47 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile index e1383ace8..6360e5cbc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile.jdk11 index 6d009cd3c..686de5a2f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.0.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile index df92de172..44125f733 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile.jdk11 index d3e3e76e6..0ddfeb2d9 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile index bbebe6ced..c8fec5db5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile.jdk11 index 7653ece8f..6a7fea41a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile index 7325c5469..96ad8ff60 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile.jdk11 index aa4fca831..b0679976a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile index 81e748d0b..99eafb718 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile.jdk11 index 98fdc6c26..19610220e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile index b23c89dd5..b8e73ae8f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile.jdk11 index bc6ee36dc..9ea1974e3 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.1.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile index faa46e85a..51d56bc76 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile.jdk11 index 6eecea5eb..61c4cbcbe 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.10.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile index 42e0419f5..df6734bd4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile.jdk11 index e47722292..922f4d555 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.10.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile index a604c0f2e..0dd1be7a6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile.jdk11 index ef0df7c9f..f26878cec 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.11.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile index 598344bef..e50d78980 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile.jdk11 index 01dd8ce5a..bd4d94e84 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.11.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile index 82e14d9a0..2a26c03a4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile.jdk11 index 5f98b0ea9..79b358ecf 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.12.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile index dea39693d..dce15c993 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile.jdk11 index 2b41df664..aaf818d8d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.12.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile index c913d3c21..7febf562c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile.jdk11 index 680207c84..3e3bed9cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.13.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile index 03cb5fdf3..b459cf83b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile.jdk11 index 7774451bc..cd73f2d03 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.13.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile index b0bddd205..518de463f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile.jdk11 index 768cc955c..0f28111dc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile index d12f00b36..1796067fd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile.jdk11 index f29cae92c..660bf630d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile index bdc026a14..a99c3349f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile.jdk11 index 49172b6b8..36d809f9b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.14.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile index 12e565886..ec1ca3629 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile.jdk11 index cd42434b7..0199920ac 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile index c139d5f1c..9f1f9ec77 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile.jdk11 index 30d25dde0..3dd12b05d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile index 982add7a1..3032ad808 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile.jdk11 index 14f642db4..083aff3dc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile index 418a75274..4e6ea0054 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile.jdk11 index 3204fb094..aed9d6792 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.15.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile index 93b21a04d..8b173dd9b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile.jdk11 index 635ab690a..33474c79d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile index 38b42e3b8..2e739aa81 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile.jdk11 index 507cb6e33..0f12e700a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile index 3a890b9b2..29d8cf732 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile.jdk11 index 32ac1fdfd..091daac0c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile index 01e7b9d88..99fcba980 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile.jdk11 index a5075569a..df51747d9 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.16.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile index b0c99db1e..ff592b140 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile.jdk11 index 5294135f9..e4f87b0bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile index 60d703637..c2c54c1e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile.jdk11 index 83161593d..b88215fbd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile index 5f32f11fa..6aa4414f8 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile.jdk11 index 1610a5b7f..3e43b113f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile index 9c301a8af..a8947b6b5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile.jdk11 index 8a57d4663..2a0fa4e2f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile index 290d0d58b..a7d020bbd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile.jdk11 index a84fe1fcf..42fe4eb4f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile index c1ec22663..4ea8504ec 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile.jdk11 index eba77330b..1a8a24c3f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile index 5184c9c6b..948e92e86 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile.jdk11 index e3fb29346..a067077ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile index 1a0409014..4bf784080 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile.jdk11 index 276f714d2..3c42d2e44 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile index 127ca7165..372752761 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile.jdk11 index 8aae1212c..9235e874d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile index dc51c13c3..32e716064 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile.jdk11 index e2e519949..745ea9640 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile index 8ce2dec6a..050d6a905 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile.jdk11 index 700824751..f3f42bd21 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile index 78fef7356..907a30d08 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile.jdk11 index 6d1ed753a..afd89bc2e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile index aa823bc37..d4661c715 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile.jdk11 index 6fc5f9789..8f2e4bc38 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile index b2d1e5b07..7dbe1b860 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile.jdk11 index 9b06a173f..ab0a4596c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile index f124089f1..9e2cd1c36 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile.jdk11 index 3a60fbe4f..36fc0f182 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.21/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile index 5b50570ca..703c24afe 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile.jdk11 index 35442a454..30c208797 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile index e0d4709a4..bf7574644 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile.jdk11 index dfcc2c772..6864a988b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile index dc9c56f51..e4c7b6ac0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile.jdk11 index 3cc542ec9..e40ab62d8 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile index a13f32540..e08eee7c5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile.jdk11 index 847374ab6..3e45e7dca 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile index 1d6113e04..ae409c39d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile.jdk11 index bc03f2d60..2b26f2607 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile index 2b57fe85f..57b56be28 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile.jdk11 index 6fdf71ebf..45c4fd635 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile index dc8de69bd..96dc2a1dc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile.jdk11 index e13cf51bb..5fbc2c779 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.17.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile index d5f5dbbac..b12f09840 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile.jdk11 index 3a6811eb3..1a7be8fa6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile index 163f53eaf..df404ae77 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile.jdk11 index 1d85ba55a..f8d5de615 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile index 0a42872fc..b68e56e00 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile.jdk11 index 3b2a129a6..6ccfb4cd5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile index 054c0f4d7..a0a546e51 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile.jdk11 index dfeeb6959..5090a6e73 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile index 3c6ad1531..b6f4e0b65 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile.jdk11 index 6b62c022f..52e7d2ea6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.18.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile index c26c3660e..906c0387d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile.jdk11 index f092385c1..bf92fa44f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile index 294531486..f38f69df1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile.jdk11 index 4cf82a370..b9b3a8aad 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile index 1ad508ce2..4fd670da0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile.jdk11 index 04e655ee2..f2d60e3e0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile index f8ebde272..04bb14f36 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile.jdk11 index 043b63b6d..3854b3c57 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.19.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile index 4c11396d4..1f1095330 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile.jdk11 index d5583b050..1add23c5f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile index 4ff48ea71..a1f13731a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile.jdk11 index f0688cc82..dc26a6c3c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile index 356aaf085..885f2da3b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile.jdk11 index 0f92a9a99..a7becdc1f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile index a44f2f0ba..9f38aa781 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile.jdk11 index 229bf6ed1..eaa20d55f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile index b27a95b8f..7d0078a31 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile.jdk11 index 315b88f00..62b6d8833 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile index 813244a24..aa1ff0aa2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile.jdk11 index 1b3306688..4088d7a02 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile index c52ae9bcd..3b1752dcf 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile.jdk11 index 5b8d672e8..568de080e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.2.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile index d0c3c8907..220680164 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile.jdk11 index 3aa1cb367..ff45a6f0c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile index 723f3050d..098de43ac 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile.jdk11 index a81002886..a47e83937 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile index 5f5a55d9a..569a883c1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile.jdk11 index 89b718f9d..d9466004c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile index 30a2ce8f2..69684729c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile.jdk11 index c85355a75..5149601d0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.20.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile index c4802f9d7..4be234097 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile.jdk11 index 91b5ca179..f1a2d412e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile index 7220f40a2..158649eee 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile.jdk11 index ea4758a3b..0ee326031 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile index 29ddd0dcd..7e5239dad 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile.jdk11 index 228d9be71..219c7f639 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile index ce94bb7af..69b179915 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile.jdk11 index e5be026cd..22ec3d254 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile index b86ba2388..cce4d5d96 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile.jdk11 index bce98d4eb..2033e80d2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile index 4ca659cc4..267789480 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile.jdk11 index c784644d0..a1816d59f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile index 34d1c8de6..dc1826971 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile.jdk11 index 1e193472f..ea06dcd08 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile index c58f3bc69..d37d5810f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile.jdk11 index d0b445fa6..2faacc7cd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile index 1e42c7208..d47a66d2b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile.jdk11 index 0267672b6..acf99051d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile index e3adf4c5a..62e1ba4f4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile.jdk11 index a6f958655..3f5856bd1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile index 2127c9228..6f83ef1d2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile.jdk11 index ba08508e2..4a4a1ea5e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile index 890650705..ccbc779d6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile.jdk11 index a5c43e2dd..52c8ed805 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile index e6dd90587..4c193b2e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile.jdk11 index cd830a67c..96bbff888 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile index 5fe8b5590..9b8913a08 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile.jdk11 index 3163b36cf..f532b6740 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile index 4a89107fc..aa46623a1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile.jdk11 index 74c7dc034..7aedc8c14 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.21/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile index a4aafb728..3348b792a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile.jdk11 index c6416f2d5..21376ff47 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.22/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile index 5662b58ee..469c8ab9f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile.jdk11 index 75dce2627..1adefcdaf 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.23/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile index a8b3c7b10..d0d244d69 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile.jdk11 index 284a9f20e..abbad693b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile index 643829941..1e56da677 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile.jdk11 index eba76e5f7..d2f0f5ef6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile index cbb7e4043..e0494dbcb 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile.jdk11 index f0bca69db..529fbbbd7 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile index cc0f0de29..db61fb242 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile.jdk11 index 8dfcce6a4..26eb6aba9 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile index 3e67b3631..1b45baf00 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile.jdk11 index 183dcc235..f72052389 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile index 034922ca0..1de90c98f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile.jdk11 index 0765dca3d..54bb88a42 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile index 9292b239f..db9ee748c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile.jdk11 index 9ce025100..1cd8bcece 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.21.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile index dccab6c3d..18547aaa3 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile.jdk11 index 00d8c6972..a8d2433c0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile index 9adbbe402..1da209aab 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile.jdk11 index a3310ba60..25284d8d0 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile index 3ae93a834..7634b0617 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile.jdk11 index 3a8b000fd..a30c514f7 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.3.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile index ea739eb81..47b32e0c1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile.jdk11 index fbc0a4541..fe0a9cdce 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile index f383e4d8a..bf819bc1e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile.jdk11 index 2d0ddda56..0a1c00c30 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile index 7f2ae6445..e67beee0e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile.jdk11 index 7318d4af9..76bff73e6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.4.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile index 6e4cf1b89..b6a9ec990 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile.jdk11 index e2cc41170..e4e4cd572 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile index 87ba6b8a6..288dcc5a4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile.jdk11 index 1ebf4adee..f5627ff09 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile index 4185c1406..034da4ed7 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile.jdk11 index 466585c8c..828814e26 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.5.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile index c80ba4393..e0be86813 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile.jdk11 index bb31e46ef..a0517e2a4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile index a62362c34..c2c6e014e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile.jdk11 index 38ca85207..96ef22ef8 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile index c58520a90..763ce185a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile.jdk11 index cf3d9c9b3..e0aafcd93 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile index 31cfb0b82..a465938d2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile.jdk11 index a10c2f19c..7d2c71410 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile index 66c7467ca..8ef933647 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile.jdk11 index 1395f0cec..8d2a13be4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile index 6101aa1f5..b1e0ca4bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile.jdk11 index 5a5b5bd97..38fbee43c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile index d3dab873c..554a003b6 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile.jdk11 index a3ce8f831..4e48333bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile index b9c8be5f2..505f963aa 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile.jdk11 index 7bcad971e..2e99cd90b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile index f41533b1b..af3579594 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile.jdk11 index bd6c0247b..1425cad23 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile index fa45f1477..4d79ef86b 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile.jdk11 index 50522ae21..0bf28f81d 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile index bb62ee426..e586e33de 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile.jdk11 index 77cf6493c..8db5f226a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile index 3540668f4..5cc58f5dd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile.jdk11 index 984e203e2..d73a84fe3 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile index 711ce0412..fa5904ac8 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile.jdk11 index 1fa9e17db..c2cbaa803 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile index dcc13368c..84943dc11 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile.jdk11 index 73fa0a4e6..531ac3a8c 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.21/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile index 446235ca4..88c3d56b5 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile.jdk11 index 7023d8a8b..214b65041 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.22/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile index 472fe5687..1153c5ce1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile.jdk11 index 960d62015..081566f0a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.23/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile index 1878b6bfa..2d459ccdc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile.jdk11 index 0031030db..f13d5b32a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile index 88e223386..9ed956614 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile.jdk11 index 84227991e..59db18cf2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile index 1345ae951..e3e722bc3 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile.jdk11 index bcd23440d..bb38080f1 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile index 8f11bcc66..78b0197dd 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile.jdk11 index 791936c38..a50e89df9 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile index bbfc5414a..e47a82e00 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile.jdk11 index 7ad360878..a02ac914f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile index b46cdecd9..dacc41134 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile.jdk11 index 6577b5c23..da84d83e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile index c1ce27ac5..c11a7ddb2 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile.jdk11 index 470c08a0b..cbe4bb18a 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.6.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile index b6fd55880..2480a8322 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile.jdk11 index 8f60417a1..7ff051256 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.7.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile index c83610dae..5ea84e297 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile.jdk11 index 43d1cb97f..39452fe4f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.7.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile index b4facbda5..825dd965f 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile.jdk11 index 0ceec71dd..6b96ea00e 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.8.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile index 297c60d02..c295cc0c4 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile.jdk11 index 075a5e93b..6bbaaf903 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.8.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile index d5113f0b5..74d545739 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile.jdk11 index 691ccc3d2..19bb0f472 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.9.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile index a7b913275..2b7a1f1cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile.jdk11 index 009079984..9a0a081c9 100644 --- a/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/7/7.9.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile index f8c6e4e42..0d9e295a0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile.jdk11 index da6442c2b..f35adfa6a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile index 5f79a4fa3..b5ab1240f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile.jdk11 index 2c5e45b47..4ab346811 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile index 7703b1599..0d5bb680e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile.jdk11 index cf9cc0faa..5a4a348bb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile index 06107aa1c..93dff0e60 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile.jdk11 index 763987c29..a214a7457 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile index 1bea69886..da67b2329 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile.jdk11 index 5f761d78b..5301d63a3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile index 83e045484..8f062da1b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile.jdk11 index f3ece2cdd..6ad385a08 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.0.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile index 4ed88750b..e40df1bf9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile.jdk11 index 106ca3881..f80f14aa0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile index 3e5c8fdc8..87862acf3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile.jdk11 index 2f90477b1..51de4a766 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile index 72295eaf4..758b67e39 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile.jdk11 index 991d9f8a9..ae43b74f2 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile index be3154bbd..f7bf4d025 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile.jdk11 index 8e6373965..1369f50e3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile index 5b5e0efaf..63fd18afc 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile.jdk11 index a98c626eb..8acc2d23c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile index 43cb06714..9db4f1a70 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile.jdk11 index e0f96e2e5..21702b662 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.1.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile index daae13c48..c8fd13260 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk11 index 50a021305..1e5367d21 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk17 index 8376023c2..da9ff6bfa 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile index 6fb874d69..56e8068b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk11 index 23080fc3f..dc761432d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk17 index bc82f45fd..cb9a3dc9e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile index 5a0817490..358665dde 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk11 index 0e53b357a..ba09945a7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk17 index 0bc2c2a32..0b3ef387a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile index f48dd43bb..579631e83 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk11 index 38f981336..769933ddf 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk17 index 899a8fd38..529efd957 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile index 100a81617..d5c02d422 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk11 index 7fd5501d9..7cb89b194 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk17 index 66ad94568..59556be12 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile index 46f17e251..a90cb3250 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk11 index cf6b94c94..a0ab1aa61 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk17 index 1a5cb9d93..6d7ce55ba 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile index 891096dee..67d7127c7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk11 index 9ecaad6b7..a4fcd0287 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk17 index 65d2244a2..07fa45b46 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.10.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile index c2975331a..2c82e7cc6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk11 index 5b6cd66c8..21286683a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk17 index c005798dc..c39b9eb37 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile index 4e0b72b6d..f32f5745a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk11 index d763c1544..07be37c51 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk17 index 13d50d119..8d1617181 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile index c4e80fe14..2394dce4b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk11 index c9a1f66f6..0f400a0ea 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk17 index 92aeeb325..650b11e71 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile index 7f717ebf6..1e3009d32 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk11 index 89690708c..960acb380 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk17 index 79b6fac2f..7157b56b2 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile index 2fc32d554..49de792be 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk11 index 8a2b7cfcf..92652499b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk17 index 74eb5edea..a305272c6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile index 589548cf3..079c16665 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk11 index b987eb891..e2edf09d7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk17 index cb4a1098c..be1ab1969 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile index e955d399a..5482ca195 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk11 index bb4b482d2..dad639dfa 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk17 index 3a5c7b6ad..b8b04bb70 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.11.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile index 0c6ae4506..69fa79fd0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk11 index 2c9dd32bc..96dc29adb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk17 index 43f574a35..fc8ef1f33 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile index ee9a29a7c..16d3579d9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk11 index b514a7f2a..7a00d1c4a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk17 index 1cbe97bc8..cbebd3ede 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile index ee8a76150..793a0bac7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk11 index 0d0af6b17..76de5fb8d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk17 index d06221823..902e87c1d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile index 464fadc80..4220f7b43 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk11 index 6bf7648a3..4932f69ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk17 index d62b7f518..508d4b102 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile index 285c4f420..1772a779a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk11 index 660f933b4..afb9403d1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk17 index 4dfc30604..98d1d2288 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile index 393a18a51..d9abcb276 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk11 index 2878263e8..5082912f6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk17 index 8df5a6a17..28866ff0e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile index 8b1e28eff..85567b8cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk11 index 83e3f6834..970e731f6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk17 index f2d6c3141..958311691 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.12.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile index 3108a2ab2..720998a5b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk11 index 8421b9cba..30a14d8bf 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk17 index 1db0c695a..1a8f06677 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile index b094eaa13..75b358a77 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk11 index 23f2bfb19..684bc1815 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk17 index e8bdaf728..2b9dc68ca 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile index bcea697ee..e2fad2d96 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk11 index ef046783a..df711d9d0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk17 index 26ba291cf..ca7fd0fd1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile index e63a7f634..a328a3989 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk11 index 0fe20cd91..5d42192a2 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk17 index 45efe6091..52c3ccd59 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile index e78fed30b..25b6880d5 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk11 index de7780ad8..2e4825f8c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk17 index 9a483d771..e8eb74e88 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile index 1bd4fc1bc..87b9f2acb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk11 index 48d893033..bb9cfba9a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk17 index 9740095e6..a5e3fbeb4 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile index 4ad24a4fe..b03e052ff 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk11 index 69bf037cc..f026060ef 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk17 index 3f90b44d3..230213305 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.13.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile index bdceca315..26fe60549 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk11 index 085684a94..eb1ca40df 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk17 index 6390129c8..d6ce6b1df 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile index a257a7387..2909f4926 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk11 index 866cc71f4..0ba33b0b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk17 index 77d30ce03..de3ef2923 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile index 22a7a29a1..299f92aa3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk11 index c729af35d..663577e2a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk17 index ebfaa991c..7e483ad2d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile index 38a98a3c6..af07097a0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk11 index 9a68ec04a..d773f645b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk17 index 1ae7851ab..83e997176 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile index 733f6e62f..13c0e90b8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk11 index 69c5faa47..eb94825d0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk17 index f11b1090e..cec3830ad 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile index 77f27c876..cad8a1848 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk11 index 736d9a1ae..c2afee311 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk17 index 37aff480e..fae1ea09c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile index 9241f4373..a038a151a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk11 index f3dc82484..0019fbbcf 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk17 index 60826cd90..16cda5796 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.14.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile index b45ec2c47..9bd944b3c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk11 index 38b84369d..917b428a7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk17 index 3e0411cd3..ef20ed1c8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile index 1fe81a08d..607d255e7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk11 index 9658d23d9..fcd9f1ce9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk17 index 596e5e922..b94860424 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile index fb198ac6b..519e965d7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk11 index dd18055e7..4c33b168d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk17 index 64c35e685..31cd89cf0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile index ef3b031ff..0920e151e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk11 index 0cb6face0..c39e3a774 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk17 index dc971e82d..edbd86a05 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile index c9c207582..01e5d071d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk11 index 20daf5b87..66d9e4f81 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk17 index 0255e421e..308763c64 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile index e9864246b..c6cf057f8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk11 index dfb537987..816d0c7e8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk17 index 499c2407c..5bbd38143 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.15.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile index e68af97fd..5f6f8c3f1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk11 index 8b5e4ca12..573990abf 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk17 index 3a7b6fb26..b10608a88 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile index 986510cfa..f7beae375 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk11 index 482a11f37..d4900baea 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk17 index 1d7e9c3b2..27b1723bc 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile index b2e28cde6..d6facde89 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk11 index 119464509..023d06f5e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk17 index 1b3b06735..0c2210783 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile index 897fc9bd5..7d6d10974 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk11 index 43f93da10..85a106ebd 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk17 index b4535e075..0043ee115 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile index 8e27ad006..db12e9bfb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk11 index 9dd1680c7..0d11800a5 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk17 index 17c3006b6..dd163860a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.16.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.17.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.17.0/Dockerfile index 8f5c82a9d..675c8fb89 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.17.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.17.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.17.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.17.1/Dockerfile index 714c7cf5f..37c5f247b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.17.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.17.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.17.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.17.2/Dockerfile index a01db3b78..704a59e1c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.17.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.17.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.18.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.18.0/Dockerfile index 37bdc38f7..5357e6318 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.18.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.18.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.18.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.18.1/Dockerfile index 40a259bc8..d142b3a4d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.18.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.18.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.0/Dockerfile index 2e7da29ba..6bd6e7b1c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.1/Dockerfile index 66521f29e..7983a3603 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.10/Dockerfile index 80792eecb..7abec7c80 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.11/Dockerfile index cbe7f961b..a9559331f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.12/Dockerfile index a12ad5e39..66b30230d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.13/Dockerfile index 216225d2c..8f6b491ae 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.14/Dockerfile index 175903256..e489c077e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.15/Dockerfile index f2b0193dd..d17764418 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.16/Dockerfile index 2ed53bd13..e214ba478 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.17/Dockerfile index d831ebe6b..cca4dd563 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.2/Dockerfile index ab44975cf..ade5d6217 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.3/Dockerfile index 0a0d86036..ebcd30194 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.4/Dockerfile index 4ca4b204a..ad85ec305 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.5/Dockerfile index d2f7bec06..d1436ecc5 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.6/Dockerfile index b8e9ecdf7..b6fbb4165 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.7/Dockerfile index 2b31215e4..2aedeadb1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.8/Dockerfile index 80c8595fd..15961b0d1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.19.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.19.9/Dockerfile index a2e816f1f..d32bbc7ec 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.19.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.19.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile index 72e240dfa..7cec99fab 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile.jdk11 index cdfdd76ee..fc8d53b7d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile index 183f4465f..541196f85 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile.jdk11 index bbf16dc45..a0cbac2ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile index 494af2e09..03d27a2e0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile.jdk11 index 340be241a..50167d000 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile index f49a760a6..01c721d97 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile.jdk11 index b1ede57cc..ba80086da 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile index 5b807fe8a..103dd4361 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile.jdk11 index ecd241f03..af842727f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.2.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile index a8eeca3e8..c14fb169d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile.jdk11 index d0a9a4e60..3d953ef94 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile index d746aca29..543d22c02 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile.jdk11 index b25ecb924..d5fe8c50b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile index 85d6beb97..22a36dd39 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile.jdk11 index d39bf17ef..ccd0cef8f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile index 7c6150323..a90cb1bc6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile.jdk11 index dd9946733..f70bb82fb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile index 3caf31daf..701d73463 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile.jdk11 index 606ffc19b..0d181ecca 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.3.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile index c727f5478..34808fac4 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile.jdk11 index 137654ef9..2836d3dce 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile index 9e3a18af0..555bce8c8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile.jdk11 index 37d36ed5b..3d7d4f707 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile index 05d1dbd71..f66310d7a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile.jdk11 index 111427880..266214f2e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile index de218a27e..b4f01e18f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile.jdk11 index 21a213339..e67917c03 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile index aa59240a0..68bf11e27 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile.jdk11 index f68b3f752..616c9b379 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.4.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile index d08edbb83..19fa25ca2 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile.jdk11 index ef3e65071..8aa6bc9bd 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile index b42f493c0..26a1918b8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile.jdk11 index e04750bb9..ce48c43cb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile index b2f0bd426..b6edf83ce 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile.jdk11 index f33f7c03e..4b1abcfa0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile index e7ec62451..e605c479a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile.jdk11 index 84af62539..532546fe8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile index 37a0c3f5e..bb2a877e7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile.jdk11 index fca9ba93f..e2fcb2717 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.5.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile index 47eec907e..d1fb81626 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile.jdk11 index 747e269dc..7ca5e8c7b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile index 7336f2999..dcd9c0f5d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile.jdk11 index b3b62fdfd..3d08ab5fe 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile index 45509411c..d34664672 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile.jdk11 index 385c8d2eb..ec25a9331 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile index 06374870a..a12cc0259 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile.jdk11 index 09ea77986..f5475ade0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile index bab0ca370..0e98bdcf0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile.jdk11 index 5d483502f..65fafbbc9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.6.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile index bf56b070f..b5a642661 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 index 7de5aef16..c558b2449 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile index c454a3f6c..4068262ef 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile.jdk11 index 9edd874ae..f679184ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile index a82ab2bae..559ef4b58 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile.jdk11 index 030ea16b9..1f12efba9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile index fef009ee2..807170d46 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile.jdk11 index 5ab355825..d53ad3cd5 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile index 618d624bb..1ad5332b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile.jdk11 index 60cdd7caf..8bd043e33 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile index 8266a095f..e583dd307 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile.jdk11 index a38c10ec0..cdc15e46d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile index a89ec75b8..00d1d34d3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk11 index 054791d0d..b980e0646 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk17 index 98900cd37..f5c3fae66 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile index c58fd8097..9ec283072 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk11 index c075cbd37..db2080d36 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk17 index f98d86144..e66d6df14 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile index 7aef20d58..4fded90ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk11 index 446d1da1c..a2f30fd1f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk17 index 8d1444526..e64c4e212 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile index b49a4e3f5..1b2014dc9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk11 index 2f7f20d8b..85d2ca456 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk17 index b3c025cfa..48311342a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile index 67c50b4f6..10c248305 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk11 index c7fe74649..e027d5122 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk17 index 439a06ed5..4f1713ee8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile index f63c124a4..4703ffb1c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk11 index 0a4fd926e..fa7e0d49a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk17 index c7a3d0511..248deb921 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile index 42bc57a4b..bf840cc50 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk11 index ec6747d09..0859d94e2 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk17 index dd9c4f8d6..9c98ad975 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile index f81aaee93..507f72dfe 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk11 index 089282658..6aac6735a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk17 index 321943f57..60209b80b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.8.7/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile index 0740d2cb0..0b8658e96 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk11 index 60bc85a53..e3508d36a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk17 index 7dcd23fdc..ee019f152 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile index d17393c4c..869968be3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk11 index 7dee49399..f9eeb0fad 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk17 index 5f805843a..69b020197 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile index 6dbd20f71..b9dd085cc 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk11 index 435fd7e79..4c2314387 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk17 index cc478c0af..802528a1e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.10/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile index 2e7b16815..f3522300f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk11 index 2c196208f..33f65e925 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk17 index f57274d17..0dde52ff3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.11/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile index 27549e086..97c3c4434 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk11 index 23aa5b07d..2b4302a7e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk17 index 43b624d96..19c67f5e9 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.12/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile index ec9de3577..d6bcf80b0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk11 index e0e050865..2a3b54921 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk17 index 52086853a..3dc1d1bf8 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.13/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile index 7e7ef3d5d..d7e6d15b7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk11 index 3c5e85fd0..f30f5bc75 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk17 index 54afabb2a..051ca761c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.14/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile index 5543f5ae9..477ce3a00 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk11 index 5e327cdbc..eb6318ea5 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk17 index 2a410c97b..0b3f18413 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.15/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile index 6b93ec6a8..5f08c4056 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk11 index 4c7b50436..0d5c11c98 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk17 index f563e2112..82b36631b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.16/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile index a1de0583b..3fc4e2e19 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk11 index bdd4b8e24..ac607c92d 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk17 index ef8c8a12c..3e07f4dd4 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.17/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile index a25da968d..0b5143b6e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk11 index 60624dc8d..9d85a7c23 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk17 index e172205f3..d747df362 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.18/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile index 2f0ee864e..c5ab02b79 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk11 index 3b3ba3799..35819be31 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk17 index d75e0111a..02ac321f3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.19/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile index 3278a7744..c5daf3303 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk11 index a71c8a6bc..7fb05cdec 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk17 index 490adab85..1b352c36e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile index 36ae66994..97af4f91b 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk11 index 372dc3b22..406a0cb22 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk17 index 0cdc877d0..06d07bc21 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.20/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile index df49d4067..eae3feb65 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk11 index a455c6b25..f24725ac7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk17 index e9078caa6..02b83ddea 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.21/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile index 1ab2abdde..bcfc6accd 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk11 index 1c06bef79..31edd7988 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk17 index edf66ec5c..58a48d43c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.22/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile index 461b3758c..1cae153cb 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk11 index b0b4352db..af765d0d1 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk17 index 1a11ad8d5..89a878863 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile index 974cd00e8..4b5b5661a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk11 index 680b14510..15616db69 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk17 index 745a4e1c5..24047e8e6 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile index 59f159ce0..e0f477e4c 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk11 index be2e7ebe6..c41884cc7 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk17 index 6803c4446..58b108e7e 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile index dbc94b0fe..c5e7803ed 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk11 index bb76aa27f..07b510d73 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk17 index b7235ba6b..eb8f6e73a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile index 9381bfbfc..f7450c62f 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk11 index 45d1ccb5f..3560a3aba 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk17 index df3b9d8b5..86e37ff39 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.7/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile index 32c3070d9..0dfb8b0d0 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk11 index 0a4d3f7ab..fcfd6597a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk17 index 2d0565e24..7d1f45d6a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.8/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile index d203ee8e1..454cc22ba 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk11 index cb6807531..3de44bfb3 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk17 b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk17 index 6086441c0..f1e1d5eed 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.9.9/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.0.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.0.0/Dockerfile index 2292c07bf..31d74b7e0 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.0.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.0.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.0.1/Dockerfile index 0144a908c..20010f073 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.1.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.1.0/Dockerfile index 5fd3d94e8..7a23d7080 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.1.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.1.1/Dockerfile index d1b6d1a11..e6f090fea 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.2.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.2.0/Dockerfile index a0a4455ab..bd8209f1a 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.2.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.2.1/Dockerfile index 98e61b628..391d692ee 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile index c4ddf9493..069fd1944 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile.jdk21 index 3ff5c4aa4..60bbb7a60 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile index 9990edee3..4c4c7e61f 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile.jdk21 index 104ae873d..78ef9f11b 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile index 96b7b1781..96a94db58 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile.jdk21 index 756e2f269..1ef97b682 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.3.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile index 640c945a5..7a735c70e 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile.jdk21 index a5aa8745d..70381e2d3 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile index e4632a68e..e3de67690 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile.jdk21 index a0adb79c4..f9aa90d58 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile index 4301cac0e..4f8aaa59f 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile.jdk21 index 1ad20eecc..a65f05bc3 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile index ad2449a42..d25ddf927 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile.jdk21 index e27f7ce92..855bbd0f2 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.3/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile index cb643ba46..b2b897092 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile.jdk21 index a2f6eabac..1923a3ae0 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.4/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.4.5/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.4.5/Dockerfile index 6b9117ab0..5972b75bc 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.4.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile index 2eb8ae7f9..0c5e052a2 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile.jdk21 index cb4bdec32..24d1febb5 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile index 066090fac..790d7ca5e 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile.jdk21 index 8c23ae732..0d32e52bb 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile index bd7d620a5..a3da69bfc 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile.jdk21 index 3e76d7097..53a0091bb 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.5.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile index 7a901eb05..0f53d4e11 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile.jdk21 index e65f60e17..e5dceca81 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/9/9.6.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/9/9.6.1/Dockerfile b/linux/ecosystem/atlassian/bitbucket/9/9.6.1/Dockerfile index 8964b0dba..1d240cc22 100644 --- a/linux/ecosystem/atlassian/bitbucket/9/9.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/9/9.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile index 8964b0dba..1d240cc22 100644 --- a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk21 b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk21 index 8454e98e9..011a09c79 100644 --- a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 7999 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR} diff --git a/linux/ecosystem/atlassian/confluence/4/4.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.0.3/Dockerfile index 927ff0fa4..298cd7817 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.0.4/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.0.4/Dockerfile index e888aadc8..7fd29b589 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.0.5/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.0.5/Dockerfile index 18145d30d..ab3fa5709 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.0.7/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.0.7/Dockerfile index 1d1776ec5..0e3ed6a4a 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.0.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.0/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.0/Dockerfile index 555b35ba4..39a0f5336 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.10/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.10/Dockerfile index 8e35aaf7f..cc4b3e588 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.2/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.2/Dockerfile index 9e96ce29f..207578961 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.3/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.3/Dockerfile index e3d703323..3fe86d99b 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.4/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.4/Dockerfile index c49221753..1c7665bdc 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.5/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.5/Dockerfile index d7894baf6..28f3b5133 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.6/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.6/Dockerfile index b08cfc464..9a55712af 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.7/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.7/Dockerfile index d4baa6bd9..3256870d3 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1.9/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1.9/Dockerfile index 91759bcbd..ae71593ac 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.1/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.1/Dockerfile index ce66cd344..f188b558e 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile index eaba56967..dffdefd62 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile.jdk7 index d05137084..0cdbd7df4 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.1/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile index 5d9ce922b..a4d277e2d 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile.jdk7 index 4820131b7..84cdd480d 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.11/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile index 42215ed58..aace41a75 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile.jdk7 index b6922d64b..f50445785 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.12/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile index 9eff24048..75d4b2f6c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile.jdk7 index d755351d1..f76fd9947 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.13/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile index 94fec3891..03243178c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile.jdk7 index 25ba25627..7a0105942 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.2/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile index f6a8cd90c..a5ae40350 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile.jdk7 index 9e420de8d..048be643d 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.3/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile index f8ee0f7de..d57e389e2 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile.jdk7 index 5e4155e22..842425fa7 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.4/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile index cd7524970..6f49781a7 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile.jdk7 index f9455d73b..65733af0c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.5/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile index 358113f3d..8aeba2b83 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile.jdk7 index 3833c5684..6e942bfce 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.6/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile index df49469f3..7a6aabe03 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile.jdk7 index a9d6e54f3..3eb886be8 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.7/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile index d5ffb1091..a38275429 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile.jdk7 index ffbf2b5bf..e6cc0b083 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2.8/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile index 3b204b108..626c4d25c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile.jdk7 index 9e08a719d..0baddcdd4 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.2/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile index 19dc6a734..5cff8ec0c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile.jdk7 index fc0eed1c4..43a57272e 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.1/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile index 27b81820b..f0bb0063c 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile.jdk7 index 3d9b1dd3e..1593aeba7 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.2/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile index 660169f2e..30f53b1c1 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile.jdk7 index 652b68f5f..d49abff29 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.3/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile index 1c6a98c1f..6650b6cc5 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile.jdk7 index 7a4efb36d..ec3c5f269 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.5/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile index d7a343ac3..34a6be05d 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile.jdk7 index 730c2ea47..db55b29ac 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.6/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile index c412eac21..1ace0eab4 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile.jdk7 index f3469ea97..0cdbb62f1 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3.7/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile b/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile index e2bdeb166..2c5d02ccc 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile.jdk7 index 140e66057..2e643d76d 100644 --- a/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/confluence/4/4.3/Dockerfile.jdk7 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.0.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.0.1/Dockerfile index 8c6de367c..8f01acb26 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.0.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.0.2/Dockerfile index e6ae73347..1e45eb55a 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.0.3/Dockerfile index 22ed89f8d..6bff6646d 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.0/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.0/Dockerfile index c8c749007..054f1cc84 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1.1/Dockerfile index 075eba611..83bc092dc 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1.2/Dockerfile index aacc20df7..b5e654e34 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1.3/Dockerfile index bbcf42663..8772d33f3 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1.4/Dockerfile index beba85de1..1a7f87700 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1.5/Dockerfile index e4e3fd386..8292345a3 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.1/Dockerfile index 69900f7ea..2a4777f86 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile index 61e1ef163..a6e29a208 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile.jdk8 index e279abd09..c1a1288c5 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.0/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile index 03f9700ff..3760ca0cf 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile.jdk8 index d4ceee33e..b8074f661 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.1/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile index ef90b5ec3..1d157224b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile.jdk8 index da0262154..f999cddd1 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.2/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile index 9874511c9..12fc60854 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile.jdk8 index 4f71a1c4a..d333808b8 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.3/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile index 2d4eece2c..0fd7f0a2a 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile.jdk8 index 9041b6376..20ee746a6 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.4/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile index 3a50a51b1..8fc3b0f80 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile.jdk8 index ad2dfc9ae..d82a0eae0 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.6/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile index effc169d3..68b163239 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile.jdk8 index 90b91289c..1a1b88e28 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.7/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile index dd24b5d3d..96eed4cd5 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile.jdk8 index a2d440327..cc9e47e59 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.8/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile index 1465e0a64..7a0adda99 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile.jdk8 index 4125c19c7..77ac219fa 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.10.9/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.2.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.2.3/Dockerfile index 0d3dcefad..fc2d14cdc 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.2.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.2.5/Dockerfile index 700c00faa..b8276d857 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.2.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.3.1/Dockerfile index 2be003f34..3e5a0e136 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.3.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.3.4/Dockerfile index 2c45bb207..e1347411b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.3/Dockerfile index a9a8971c8..b244d6ec8 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.4.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.4.1/Dockerfile index 0d116ae75..ccbf8a387 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.4.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.4.2/Dockerfile index 4445a433a..a60beb1bc 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.4.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.4.3/Dockerfile index ca40e52cf..1d933faac 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.4.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.4.4/Dockerfile index 4d027f98a..75d9ea6f5 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.4/Dockerfile index 23f8ebe8e..fb5eda0eb 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5-OD-31-009/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5-OD-31-009/Dockerfile index 700391bfd..cebdba750 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5-OD-31-009/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5-OD-31-009/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5.1/Dockerfile index 981196234..7e4be155f 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5.2/Dockerfile index 215dcc6e5..6c171af7f 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5.3/Dockerfile index 998bf0bcf..5e4d6266b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5.6/Dockerfile index e48082f3e..e4ffdc79f 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.5/Dockerfile index deb2d9b69..f6818a007 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.6.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.6.1/Dockerfile index edce099e4..078bcad15 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.6.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.6.3/Dockerfile index ace09099f..23ba4fbb1 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.6.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.6.4/Dockerfile index f2827ccac..1dacbde05 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.6.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.6.5/Dockerfile index c3cf74b5a..e22cb8854 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.6.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.6.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.6.6/Dockerfile index e828de206..b412c8ce3 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.6.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile index 14d0106ce..1fd78aa8d 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile.jdk8 index 15176471f..97d768728 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7.1/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile index 760f50994..a5af47d8e 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile.jdk8 index 7267dc229..fa7e78575 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7.3/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile index 0f19920ef..c2e55a886 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile.jdk8 index 2863b59ab..951b0a72c 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7.4/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile index 8df2aa51a..d803e7324 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile.jdk8 index 234a8beb3..08de0b498 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7.5/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile index 789273a93..453ef3c74 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile.jdk8 index 98e9a09cf..aa7e7248b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7.6/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile index fe800f9a1..50164c327 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile.jdk8 index 4eb1b3319..4f275c384 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.7/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile index 4be030d83..bd8536e16 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile.jdk8 index c2dc13fd7..929d6a4f6 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.10/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile index 06816c505..bea263724 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile.jdk8 index 13f0e8f1a..685280525 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.13/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile index e0930b108..5cd1e625e 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile.jdk8 index c3b70dea5..e68baffb2 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.14/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile index fbc7321ba..37d0cac06 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile.jdk8 index 7360ba614..fafac2b82 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.15/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile index b165fd83f..b0d521a5b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile.jdk8 index 6c1867e9e..e24a9a14d 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.16/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile index 317d3958e..22b28dea9 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile.jdk8 index b71d5d213..f33b8fd55 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.17/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile index 43df681cd..dea77b8a3 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile.jdk8 index 423fde5f8..98fa10152 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.18/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile index 9176ef334..6c6bfc712 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile.jdk8 index 9b7f3920a..7744c367b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.2/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile index 0e5d4698e..6f4e8df25 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile.jdk8 index 9547e4cf7..8f7aff37c 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.4/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile index d47d56960..125e43acc 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile.jdk8 index 3ea7f3fb9..66e222142 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.5/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile index 7544314b1..44f1c5bce 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile.jdk8 index 1edd13634..bfa3dfc8b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.6/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile index 7a4faeb0c..694af6916 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile.jdk8 index 466b38d0b..c3783fac0 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.8/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile index 70ca2b274..60469a93e 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile.jdk8 index 812c9d7d3..d5898d0cd 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.8.9/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile index ba8be7dd4..bb49732d1 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile.jdk8 index 1e9555dcd..8ed64f67b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.1-beta11/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile index 21657424f..e426c8eda 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile.jdk8 index d2c589397..8cd1db0e7 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.1/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile index 6f96544d5..5a5861817 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile.jdk8 index 3a44290da..14ccaaa94 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.10/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile index 17b42f9e6..c10ba3871 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile.jdk8 index 62bbe30d2..3a8b96cb7 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.11/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile index d901f94f6..38ca5ea35 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile.jdk8 index fff5485ec..098b7120e 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.12/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile index 2d94cee90..cb3f7c713 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile.jdk8 index 8b5bcc482..00e0d7bd3 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.14/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile index ef6f46d19..9b65eee23 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile.jdk8 index 78229e96b..f0b8d2bd2 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.2/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile index 2ff048b90..869c807a0 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile.jdk8 index bd1c7da96..58d3091d0 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.3/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile index aed913639..62af2a823 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile.jdk8 index 71e41c61f..d924298f9 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.4/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile index c88fdac49..443cd1298 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile.jdk8 index 6f545472c..8d4ac8e00 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.5/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile index f9eea1186..bc0b37a9b 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile.jdk8 index 8b0bc2903..f6e9b74d9 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.6/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile index 756c71207..b81562ca2 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile.jdk8 index 5f795e9c1..c8732b96c 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.7/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile index 0718bdd4b..7a631ff5e 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile.jdk8 index 5dd063854..68110c407 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.8/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile b/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile index 7f8ffcf3f..7f3c1fea4 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile.jdk8 b/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile.jdk8 index c58d071cc..c0dabf5d4 100644 --- a/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/confluence/5/5.9.9/Dockerfile.jdk8 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.1/Dockerfile index 3727ced29..04ce4c45b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.2/Dockerfile index 351bb5a59..1679285a3 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.3/Dockerfile index bb157ab7e..db02e233a 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.4/Dockerfile index 8375be3aa..84c666015 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.5/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.5/Dockerfile index f8018b92a..0d6dc9755 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.6/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.6/Dockerfile index 0c22cfdcc..0c761a59d 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.0.7/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.0.7/Dockerfile index 40fb46550..607474ae9 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.0.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.1.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.1.0/Dockerfile index 264104e73..0152eed5a 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.1.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.1.1/Dockerfile index 162dec264..85a6f3743 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.1.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.1.2/Dockerfile index 95f103a52..5eed7548e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.1.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.1.3/Dockerfile index f6b8b0474..cc2a8e403 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.1.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.1.4/Dockerfile index 336ce2ab3..8d21f486e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.10.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.10.0/Dockerfile index d9536d740..6ac93904d 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.10.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.10.1/Dockerfile index 7d0a8ffb5..e30ac718b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.10.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.10.2/Dockerfile index 8361cdedd..09f68c849 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.10.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.10.3/Dockerfile index b2913ca1f..e5b9f683d 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.10.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.11.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.11.0/Dockerfile index 5666528d8..180c7b48e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.11.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.11.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.11.1/Dockerfile index d6a595384..99840f3b6 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.11.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.11.2/Dockerfile index b0d6246ba..170e2cde6 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.12.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.12.0/Dockerfile index ce855387d..cf4ebb2df 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.12.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.12.1/Dockerfile index 07e1c16a0..0f514b885 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.12.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.12.2/Dockerfile index 5ed7224ce..dd475a5c7 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.12.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.12.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.12.3/Dockerfile index cf714db9c..586885a7c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.12.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.12.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.12.4/Dockerfile index fb31c01e1..6fe859667 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.12.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.0/Dockerfile index 2ca19196e..8f7d47e60 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.1/Dockerfile index 32d9fec3e..4ca08fa39 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.10/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.10/Dockerfile index 2386a5f89..cb696cf49 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.11/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.11/Dockerfile index 32cf9e42a..9fee05f7b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.12/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.12/Dockerfile index f90d2de61..25ca08bb4 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.13/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.13/Dockerfile index 079f13385..711ddb1fe 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.15/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.15/Dockerfile index d6f584b51..51f1235dc 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.17/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.17/Dockerfile index 93d2ca4d9..cef6d6d35 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.18/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.18/Dockerfile index cba7a272c..827118ad5 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.19/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.19/Dockerfile index ea6b2c8dd..89b6aa6cd 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.19/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.2/Dockerfile index 91704b099..e7d257e1e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.20/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.20/Dockerfile index 7716f306b..8f3e47d7d 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.20/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.21/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.21/Dockerfile index 54bafcf63..3849087bd 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.21/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.23/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.23/Dockerfile index 2669b2ad6..3a4fe55b4 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.23/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.23/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.3/Dockerfile index 0547e3bfd..21187d21b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.4/Dockerfile index 197f656b4..06f8f3d31 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.5/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.5/Dockerfile index 16eefaa18..4715c6a50 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.6/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.6/Dockerfile index 02e9d7cb4..f4f3c9d2d 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.7/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.7/Dockerfile index f28b8e258..699a825f6 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.8/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.8/Dockerfile index d07fcee04..432d99f51 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.13.9/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.13.9/Dockerfile index 5e80d1a47..18625b3fa 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.13.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.13.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.14.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.14.0/Dockerfile index 21f4bee5d..d71f2f39f 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.14.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.14.1/Dockerfile index 919efbbc1..201ae30b8 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.14.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.14.2/Dockerfile index 60f2659c5..18ec938be 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.14.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.14.3/Dockerfile index 1ee7cc2c5..e7f77e30c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.14.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.14.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.1/Dockerfile index 3d5ff3e2f..3d58af552 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.10/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.10/Dockerfile index 103238ed5..83c7b1984 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.2/Dockerfile index e0ba15b2b..71a216ced 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.4/Dockerfile index fd75b5b8b..148db0f10 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.6/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.6/Dockerfile index f3a28def7..339d84c50 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.7/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.7/Dockerfile index 449c8e613..402f20a86 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.8/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.8/Dockerfile index 17a2ca536..064c23299 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.15.9/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.15.9/Dockerfile index b2ead04bd..5daa17d1a 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.15.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.15.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.2.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.2.0/Dockerfile index 532f8550a..1f346434c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.2.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.2.1/Dockerfile index 699361a8c..c6236cc74 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.2.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.2.2/Dockerfile index 426788d4d..1d6c6fd5c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.2.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.2.3/Dockerfile index ecab1469e..e87bc4fb9 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.2.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.2.4/Dockerfile index d0a96b373..77d34a481 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.2.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.3.1/Dockerfile index 6598d0c9e..f0e14c55e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.3.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.3.2/Dockerfile index 21447629f..1b242005e 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.3.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.3.3/Dockerfile index 25beb5551..65ac60ce0 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.3.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.3.4/Dockerfile index 5232d8631..5906f55ee 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.4.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.4.0/Dockerfile index f4f7fdca7..df56a4cf5 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.4.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.4.1/Dockerfile index bd5381b44..38d5d1303 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.4.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.4.2/Dockerfile index 2d4dceb78..87bdadcbd 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.4.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.4.3/Dockerfile index e972656f0..715133cd5 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.5.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.5.0/Dockerfile index 29c4f9db8..98a32a0df 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.5.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.5.1/Dockerfile index 5548bef96..bceecc47f 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.5.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.5.2/Dockerfile index c4f0f76f9..42091da9b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.5.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.5.3/Dockerfile index dd179735b..d363e8581 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.0/Dockerfile index 02cc3c5c6..36907cdfc 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.1/Dockerfile index cc6d62599..4cc256f77 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.10/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.10/Dockerfile index c2d983d05..188e58ccd 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.11/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.11/Dockerfile index f49edac12..842112da0 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.12/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.12/Dockerfile index fc23f5766..ad2eeb7d1 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.13/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.13/Dockerfile index 1bb9ce2fe..00c0972c6 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.14/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.14/Dockerfile index 4b162e51b..110762ea9 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.15/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.15/Dockerfile index e36db1c86..a939b8c4c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.16/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.16/Dockerfile index 439b5098d..9cb7bc66f 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.17/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.17/Dockerfile index 6df18785c..90e664494 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.2/Dockerfile index f04f792e6..92e66aa62 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.3/Dockerfile index 87ba88405..a6c7fed69 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.4/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.4/Dockerfile index 990a5bd26..f1d029314 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.5/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.5/Dockerfile index da6b9d997..23cf26d9c 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.6/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.6/Dockerfile index 4604f8c50..6b5508375 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.7/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.7/Dockerfile index b59e6ef8a..033d7c5df 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.8/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.8/Dockerfile index c40fdd715..01b52f0d5 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.6.9/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.6.9/Dockerfile index d3d3b2488..8a252587b 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.6.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.6.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.7.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.7.0/Dockerfile index 88cfb3cf4..d077ce7ea 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.7.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.7.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.7.1/Dockerfile index 05d37a652..e451f2474 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.7.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.7.2/Dockerfile index 120e8fe86..4a2cc0c54 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.7.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.7.3/Dockerfile index 17d524fa7..99fe5ce34 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.8.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.8.0/Dockerfile index 133fae736..e57dc2a40 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.8.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.8.1/Dockerfile index b447387fd..0fbef3a02 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.8.2/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.8.2/Dockerfile index 48ad4a58e..941d66c21 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.8.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.8.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.8.3/Dockerfile index 963a74a63..1da939449 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.8.5/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.8.5/Dockerfile index 8bf7545b9..a679f19b3 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.8.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.9.0/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.9.0/Dockerfile index 81ec5af62..b467b3143 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.9.1/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.9.1/Dockerfile index 51a6f35b1..2ef11bbaf 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/6/6.9.3/Dockerfile b/linux/ecosystem/atlassian/confluence/6/6.9.3/Dockerfile index d2b533290..0f0d7c98a 100644 --- a/linux/ecosystem/atlassian/confluence/6/6.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/6/6.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile index ecd2b8773..47559a408 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile.jdk11 index 4bb5d0e88..42ccfc15c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.0.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile index 4ac2f9ef6..a925bac99 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile.jdk11 index b01b901af..9ffa90320 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.0.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile index e5bb90961..baed51716 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile.jdk11 index ed364bd39..8581c1853 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.0.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile index 3d5d42085..6badedbb3 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile.jdk11 index bcd28de4f..409cc3e22 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.0.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile index c610b552b..e91c5429e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile.jdk11 index a2845c686..81b8da3fc 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.0.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile index e461c5f67..92c78db41 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile.jdk11 index 3e0604dfb..eae619df9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.1.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile index 154c95af7..9b8704e7c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile.jdk11 index 0d1648715..55238f298 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.1.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile index c77eeb605..a7f82f772 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile.jdk11 index 056662547..27191d0d1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.1.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile index a4f24f419..952035bf6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile.jdk11 index f98346017..840857a91 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.10.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile index df86999b9..d2c001346 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile.jdk11 index f1e1bbd7f..ba555a28c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.10.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile index 760aab5af..e0fb02550 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile.jdk11 index 7813e9bc4..0560f1ced 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.10.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile index 608e3dea7..63065b96a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile.jdk11 index 78cbbcb1a..f7d723de8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.11.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile index 635d1357c..ef1033c0e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile.jdk11 index 5a380b0c1..a469fab8d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.11.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile index c5f872512..9afb66587 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile.jdk11 index bb9702553..c61bfee12 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.11.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile index 97e61c606..713c5a9ba 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile.jdk11 index e907e28c6..664a456de 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.11.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile index 24397d0be..ce14ae45d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile.jdk11 index 7c318534d..79ade0671 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.11.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile index 8c5e8b16c..0e06faada 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile.jdk11 index 4f4236783..fb3a3f7d1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile index 9a9759784..8eab52be9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile.jdk11 index 44f34bcaf..203b5b993 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile index 33aa711b4..256f7962a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile.jdk11 index c3dae867a..7859b3358 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile index dfc135b2a..899a709be 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile.jdk11 index 0dca12b99..11816e063 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile index eef2fc326..ccc3ce354 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile.jdk11 index 328105ea4..95c8aed8e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile index 841cf99d9..27fcdea21 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile.jdk11 index 76a37137b..cfa2b4159 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.12.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile index 97a62d55b..9d1ca1939 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile.jdk11 index 17285ce11..b8f6781bc 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile index 530e075b7..9940cf91c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile.jdk11 index 50b4f061c..0a5ebce10 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile index 777a70c31..25011c3ea 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile.jdk11 index dcc978772..b491ec49d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile index 1077bfdd8..6997d8ad1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile.jdk11 index b77fa2e2e..225b021c8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile index c2a24f41d..49f8e78c0 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile.jdk11 index 909005d35..525f108e9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile index 1314975b4..7e300ad7a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile.jdk11 index edc5547a8..e6971ba58 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile index 788b2c361..5ba31d285 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile.jdk11 index 953ef46b6..78be18af4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile index ca69c7e9f..6b72e667b 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile.jdk11 index dcbc2ff64..a0c9b43a3 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile index 8f48c2cd3..c50f7baa7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile.jdk11 index 8eb398141..a84e42e90 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile index ae2fe9d2e..009e62c13 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile.jdk11 index 21e0f49c3..5d1118790 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile index 09cfe6e2e..a7fac3b19 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile.jdk11 index 8512f9d34..e397494f5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile index 99e5c58f3..121170a1f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile.jdk11 index 03d65338f..118ade3d6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile index f34f71263..3166bac88 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile.jdk11 index fe9b27b73..61f392851 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile index bbc07e5e5..e7c6ce2a7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile.jdk11 index ed78e7f70..96eb70ef3 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile index cd929a6c3..3c0c4ebd8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile.jdk11 index 174605991..345f9c7bd 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile index b0f48cea6..9e74809a6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile.jdk11 index fbc8997c1..71dd7fbf0 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile index 7a791409e..341c2eb20 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile.jdk11 index 89be14c7f..46cc76814 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile index cd34cec72..48a358ec1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile.jdk11 index 97f658d54..10774c331 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile index e2ad591a4..e06dc8d7c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile.jdk11 index 761aaea6f..49ca7ff53 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile index cdb0c4bf0..c62c8aac5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile.jdk11 index 77b7978ea..a87afb8c7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.13.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile index 1a92544ef..74b64188e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile.jdk11 index c6980a510..39de30017 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.14.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile index 7bc0860b3..dd14f83a4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile.jdk11 index 4c210786e..673f36699 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.14.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile index f72326b09..c2e40f25d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile.jdk11 index 6a21e9cad..5cb282682 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.14.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile index 7d97ddef4..6f56a512a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile.jdk11 index aad1377c2..42d45580d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.14.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile index b23f22d44..c443f5247 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile.jdk11 index 575360af2..732a09a62 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.14.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile index 18a6a750b..cd2402630 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile.jdk11 index db7923504..3fa04e3a6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.15.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile index e0c3bf53e..615afb6a3 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile.jdk11 index a5f85abe4..afe460842 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.15.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile index 38bec5701..513a8d00b 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile.jdk11 index 07a13f6f2..ce517a69f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.15.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile index dfbde9409..165d33c8e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile.jdk11 index bf6b83cc6..8e0864a6f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.15.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile index 22ea7c37c..c2795983c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile.jdk11 index ca84b7346..f96cfa0d6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile index 9261df394..03bdd3046 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile.jdk11 index dc83a45fb..dae1e9281 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile index f3a66b16f..8433303ee 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile.jdk11 index a12a16d93..ba7672116 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile index 341ce969f..00ede7164 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile.jdk11 index 93457d7e6..d50879632 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile index e29816c76..114525e35 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile.jdk11 index 5fe59b144..078f5059d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile index 5508de86a..89e8994c0 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile.jdk11 index 4647735ad..b811b0e8c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.16.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile index 4690e4336..6ab2ed222 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile.jdk11 index 0c6ad394d..5ef8ea78f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile index 1f2126812..07833c43c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile.jdk11 index 886a31ea6..81b9fb472 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile index 9b18c2651..076bc41d3 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile.jdk11 index e88f639c3..807ea1c07 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile index 30986f268..7a7b418e4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile.jdk11 index f66ca8aef..38050279d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile index be28e3dec..36c63da48 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile.jdk11 index ed6a52b88..63018b913 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile index 38b32a3b8..02ca5cc23 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile.jdk11 index 7265b9838..c3c835096 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.17.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile index aa6ce4530..5191b96d6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile.jdk11 index e7c1a496f..400dcad92 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.18.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile index 2e793e985..00864ba6a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile.jdk11 index fc1793ecf..2da15ff52 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.18.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile index 43b50f93d..f50901718 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile.jdk11 index 98be537e1..100dc5448 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.18.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile index 58d1ada93..7df5e572c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile.jdk11 index 5e8ecd438..1a2cae985 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.18.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile index d95b22500..8d47ac680 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile.jdk11 index f8a12c8f2..565ba31d9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile index 8f9caa44c..64388cd4d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile.jdk11 index 6c5060e6f..d076b55e7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile index c90d2f79d..7721639a7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile.jdk11 index bab9c8018..3433734c7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile index aacb0c230..aa7dd7764 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile.jdk11 index c0f95caeb..1a78984f8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile index 5098460e3..d829c00af 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile.jdk11 index 0a5ddd51c..5e33eb1fc 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile index acf89c10d..8c3447ded 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile.jdk11 index ddb5bdfec..9ba26d919 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile index a086ae473..2e0934f17 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile.jdk11 index 237d6ccaf..fd1455971 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile index a028c1d63..6bdb6be9a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile.jdk11 index 9acd0fd8d..e94df6c25 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile index 1073c4df5..18fe5e074 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile.jdk11 index 23d71c7d9..7b113377c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile index ea71451bf..6c0477391 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile.jdk11 index 1ddfb62c3..381989e8d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile index c3d6395a0..063fc8ee1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile.jdk11 index 658eba2d5..02898dffc 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.19/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile index f0450fb78..f9a54c791 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile.jdk11 index 26bc56f2e..b1d9084c7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile index 3493ab112..f9c5079b4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile.jdk11 index 650470a2f..b5997da78 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.20/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile index 4583aa4c2..072c776ed 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile.jdk11 index 62c375c72..bdd71cf58 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.21/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile index 6a69ba087..5393a44ef 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile.jdk11 index 5211d6f50..f41219560 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.22/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile index 89898f0b3..500998496 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile.jdk11 index 070c2d808..4f48cbac9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.23/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile index 7a5e16c8a..1c534e959 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile.jdk11 index 14b0746d1..853e8d453 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.24/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile index 9104a1a63..add96c82c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile.jdk11 index 00fbd1150..a920120e1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.25/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile index b40781b58..417236e3b 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile.jdk11 index 8b420dfc6..fd8e502c8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.26/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile index 7cf08f75b..cb05453c4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile.jdk11 index 82f609f49..951154c85 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.27/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile index a0eff7654..d3ab20f9d 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile.jdk11 index 0aadca670..fa65eaf73 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.28/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile index ae7d9fd12..4591ee7a2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile.jdk11 index ec6dcd7d3..fce94e365 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.29/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile index 905ed2747..d41771c64 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile.jdk11 index fdfb41dbb..48419edca 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile index 69a9579a3..305214090 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile.jdk11 index 829137f23..c1e9f73d6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.30/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile index 60be2cc80..dcf77cf8a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile.jdk11 index 326f5b5c7..2dc681be6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile index ce69a0c54..bf24ca14f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile.jdk11 index 7480a9967..6d86c107c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile index 7f1e7d8e7..b31e0e87f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile.jdk11 index 855c0182d..40cbf2ae2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile index f0cc1fb05..775c999ea 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile.jdk11 index 18bd882bd..4017dc79e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile index b8115feb3..f18a384d5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile.jdk11 index 354490e86..bd748cdcd 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile index dfb3f8921..3119ed597 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile.jdk11 index 1e377fe45..8e9221c1e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.19.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile index 47f4e08d3..03110558e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile.jdk11 index a460aa0dd..064d9897a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.2.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile index c4002f06e..d4df5be01 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile.jdk11 index b313b0a67..48d43c51e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.2.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile index 2d8e55d03..f1c56aad6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile.jdk11 index 1a164d9ba..3f1127649 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.2.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile index df339785a..c1e2749c2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile.jdk11 index ddada2b3d..ed0ba8640 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.20.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile index ba99f1e94..7cf18ba3c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile.jdk11 index 9bbda513c..6956c4ac9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.20.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile index a7ba373ea..3d964d493 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile.jdk11 index bffd6f8b7..525fd7851 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.20.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile index 4ab4fe1ac..ffb8cf33c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile.jdk11 index ac30f6ed7..82240c1d1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.20.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile index db2c095a8..4afbf5d82 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile.jdk11 index 89ac6745c..83bb700f5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.3.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile index a0295bdcc..edd411f6c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile.jdk11 index 67e6951ab..d7da9294a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.3.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile index adf83a432..a8905021a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile.jdk11 index dc13fe307..09991488a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.3.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile index 387a9028b..1f156e6e9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile.jdk11 index 7c8804ddd..c33477615 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.3.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile index d70fbbc72..278844fd8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile.jdk11 index 132922c1d..7451970ca 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.3.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile index a621141f4..50ed882d1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile.jdk11 index b6e4bc55c..0c58a390c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile index c88a54246..9a1db6458 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile.jdk11 index 394686522..279349c21 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile index 4ddf0359c..18731b18a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile.jdk11 index d8e6dcf0a..951ff1853 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.10/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile index f938fbc4f..28b90f515 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile.jdk11 index 117efbe99..f9b9c4a22 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.11/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile index 2d5f5c8e0..a53cf9060 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile.jdk11 index 5ce91602a..a93b95eb8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.12/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile index ae036565a..770822c7c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile.jdk11 index 393788d45..f556902ec 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.13/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile index 2f444ca5c..354e79fed 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile.jdk11 index 527241399..90d7e0096 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.14/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile index 50dd2e69e..7474e2e08 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile.jdk11 index 837edd31e..8b1a8ad7c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.15/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile index 2d8d111ac..ba63d1a83 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile.jdk11 index b2a909d13..a8d82c358 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.16/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile index b503abc5b..afc557a02 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile.jdk11 index ebcb8c0b8..cc72307d8 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.17/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile index 9a3abce06..e7739a169 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile.jdk11 index 083d7a557..75ef202e6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.18/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile index f55a670c3..22c8ccd62 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile.jdk11 index ed8a99879..09ac96257 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile index ec2118cf4..c4d3a85ad 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile.jdk11 index 730fb7731..3355c6bb9 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile index 1938f0b4a..e2ba2fc7f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile.jdk11 index 921579d29..399071aa5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.5/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile index 2f8d176fc..6fa659414 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile.jdk11 index 1cac6a6a1..5fff77742 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.6/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile index fd85af834..8a7962511 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile.jdk11 index 0f31b1acf..529e32d26 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.7/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile index ada51e75b..86d2090a6 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile.jdk11 index 848a6f77c..c8aac0c47 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.8/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile index 270fb3046..fe6c91500 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile.jdk11 index 7cf49c917..8b8897904 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.4.9/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile index 38e67da1f..2161ece9c 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile.jdk11 index e71717f0d..98af855b5 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.5.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile index 46b91c0a0..6d4a20a31 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile.jdk11 index d0cfb9bde..e1743fcf4 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.5.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile index 26f811cf4..aca2a385f 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile.jdk11 index 36a5a7501..fc12725a1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.5.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile index 980c3ee86..4761c587a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile.jdk11 index a10aadb3f..c92db2972 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.6.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile index 21b9cf4e7..9e0c5349e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile.jdk11 index 59639cae0..c32260a38 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.6.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile index 5af8e5dbf..2a76f8a15 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile.jdk11 index d490dac8d..8f9b36c5a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.6.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile index 3dc3da683..cb10a6026 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile.jdk11 index 84ed14582..1422ac0a7 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.6.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile index c2d5612e0..55fe602f2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile.jdk11 index 28d7a3a69..174691312 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.7.2/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile index 2a08e589b..59bab8118 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile.jdk11 index 8044a9167..a183bbe87 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.7.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile index 5d1fc85b4..b726b25a2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile.jdk11 index a68bdc8ee..c8dcc6d98 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.7.4/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile index e602768aa..4eb67f8af 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile.jdk11 index 98d27e294..85e31ef1e 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.8.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile index cb802bd81..b140cbac1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile.jdk11 index 96193dc8d..bca40564a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.8.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile index 4b790ee62..1afc4ed39 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile.jdk11 index 9a5102e10..f0934cd5a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.8.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile index fc0c49dc3..2763b63c1 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile.jdk11 index c10d4c609..311f3fa68 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.9.0/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile index 07cefda94..186ed478a 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile.jdk11 index cd33830cf..b883666d2 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.9.1/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile b/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile index fb073afa9..7cee60132 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile.jdk11 index 976034a2b..862e27dff 100644 --- a/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/confluence/7/7.9.3/Dockerfile.jdk11 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile index e25c57d05..84a0501de 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile.jdk17 index af2a84201..781cddc90 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.0.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile index 9487c9197..e2eb30b98 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile.jdk17 index f7746ebe4..95b063fa3 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.0.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile index fb1d72715..28a991c1d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile.jdk17 index 7bba637d8..7d40698c2 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.0.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile index 7d74d36d2..16dc0eb32 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile.jdk17 index caf88335c..b16e77135 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.0.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile index 5b94eeda6..da862d6ab 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile.jdk17 index 6eab770d0..2a18a9eb0 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.0.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile index 97fa70941..fa55db9cc 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile.jdk17 index 415219261..2b53b7100 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.1.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile index e4c3f46b3..14053b511 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile.jdk17 index bb9340171..269e49ed5 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.1.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile index 6f8cb87cb..de64e4e78 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile.jdk17 index 061f3afab..80e951a2a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.1.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile index e19da680d..bb7b33633 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile.jdk17 index 300ae3eca..6d18c23b5 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.1.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile index 8425bc317..137f0565d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile.jdk17 index 2d3627604..a78ca3763 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.2.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile index f1be4677b..3923f80bf 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile.jdk17 index c5a19983a..977b0d04c 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.2.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile index 55ca7d53d..2ace6e374 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile.jdk17 index 32896d970..71672f6b4 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.2.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile index 8db075d03..adffd55dd 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile.jdk17 index e48eefb10..f91181d03 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.2.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile index 41768acbb..38775eb50 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile.jdk17 index aa3ea3849..f16ea7e06 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.3.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile index f6dde8129..b916d6eb0 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile.jdk17 index e60fd90e2..b723b54e5 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.3.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile index f400e4831..0d3e726c3 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile.jdk17 index e6d1898a9..277b285f4 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.3.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile index cce5ddace..e8303aa68 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile.jdk17 index 514743af8..5a3e290bf 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.3.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile index 79cf09e53..8df09ad1d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile.jdk17 index 26ffabad4..06cc3f4a5 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.3.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile index 0d2c52c92..d329e7d51 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile.jdk17 index 0bcef6828..843bc5e34 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile index 086a4a6b0..6d0422404 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile.jdk17 index 79c6d8a2d..a738fa6fd 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile index 9c3373044..32523c0a4 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile.jdk17 index b8a71fe8d..be70f7553 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile index ac9609a64..71032952a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile.jdk17 index b1815c6b4..e7ef5bf0a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile index 3a9fcdfe5..89683f876 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile.jdk17 index 433a1cb8a..16f8afbf3 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile index 67a18cf87..a06da9984 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile.jdk17 index 306c11875..43fe229c1 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.4.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile index 577c26ed6..7d7ef154e 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile.jdk17 index 1dbe9a526..a335582df 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile index b97da2cdd..fdfd9b359 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile.jdk17 index 4310502f9..70b8995f4 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile index 73653cdae..1251d6424 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile.jdk17 index b29048315..e6b194afc 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.10/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile index df65f4150..8e17e84e6 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile.jdk17 index 3e13163d6..2530ed658 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.11/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile index 7d9ea9ad8..cd0e8b826 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile.jdk17 index 15958b4c0..ed92a5cdd 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.12/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile index d6159b19e..e4252bb9f 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile.jdk17 index d34975b10..93a97acba 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.14/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile index 6f41697b4..8f9f650dc 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile.jdk17 index 142315f29..33d1b9909 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.15/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile index f016cafd9..84414282a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile.jdk17 index b674d6164..9479f5c19 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.16/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile index f0be13cd8..f282e442b 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile.jdk17 index 42a9dd0a2..611ebd0fc 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.17/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile index 70714b940..9bd7f457d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile.jdk17 index 56b099aba..5f4060fdf 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.18/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile index 6f6cb81c3..b629e4a04 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile.jdk17 index ccc427afc..3e87c271a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.19/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile index 9c2f8dd3f..c53d2620c 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile.jdk17 index 72034e6e4..a91e566a4 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile index 12984ee26..3a88a2cb2 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile.jdk17 index 62866837c..1242ad2f2 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.20/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile index 542886089..ffcaab23d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile.jdk17 index 527f1c6e6..2687d64ee 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.21/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile index 0787bf84e..09bced79f 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile.jdk17 index d42ebeb9d..d0c9e66de 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile index 81ecc49da..303433d28 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile.jdk17 index 6e8af8f58..fb02ea8af 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile index ddf1dcce3..a9fd8b017 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile.jdk17 index ca4072e0f..a78ce4360 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile index 33de1f779..152abf874 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile.jdk17 index 02e61cc5a..434d2613f 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile index e8ec39981..3633e4555 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile.jdk17 index f6f2778a8..e97448f2c 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.7/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile index 555d24a0c..5c675d056 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile.jdk17 index 6f5dab5b0..3d7358b82 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.8/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile index 1794321e5..aa23f7b01 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile.jdk17 index 621399655..8cbcce82e 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.5.9/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile index 384f50e39..8e17bda5e 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile.jdk17 index feb42589b..6fbf7a2f6 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.6.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile index 190a666a0..c73401cdb 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile.jdk17 index 0cef7ab1b..0db79d645 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.6.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile index 6a36095f1..e22711e19 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile.jdk17 index 54d1f014d..7e152689a 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.6.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile index 4ca3b6d8e..ca6f9680d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile.jdk17 index 1ea93725c..49f43a5f5 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.7.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile index 78548d862..8cb17cbef 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile.jdk17 index 8d30db4ff..13cef0351 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.7.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile index 74707992b..fda4d94c9 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile.jdk17 index aae6a4f40..0925a2555 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.8.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile index 0972606de..0cca9f110 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile.jdk17 index 63a072e71..2e72eb14d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.8.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile index 687e93de0..7fb3b6e75 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile.jdk17 index 7e35c8770..30b8fe479 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.0/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile index 33ffab9bc..8dded801e 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile.jdk17 index 5e95945c4..71a0c9b1d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.1/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile index 3bcc5ca20..0a2d0b4da 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile.jdk17 index 425b1cfd4..241b80fdf 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.2/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile index c7345a4de..e17531e70 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile.jdk17 index 452b088bc..7b31f997d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.3/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile index 06735979c..6a7209f85 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile.jdk17 index c270c2b7f..788747656 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.4/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile index 322aae21f..d814c7a11 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile.jdk17 index 89d78daf8..0e769636f 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.5/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile index 3756a5932..406e4fb6e 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile.jdk17 index 6a91fa97f..56725dad3 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.6/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile index 32d6641c4..6f4fd1649 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile.jdk17 index 0940617cf..a8461b342 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.7/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile b/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile index 75e69a533..a2e03871d 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile.jdk17 b/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile.jdk17 index 13d7d8553..60ce54fe0 100644 --- a/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/confluence/8/8.9.8/Dockerfile.jdk17 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile index 04547ed5f..3eca68b24 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile.jdk21 index de733ef34..f0968df17 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.0.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile index 09df04607..30bc29de0 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile.jdk21 index ff37256c9..1b41ae045 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.0.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile index 1803547af..d52e93e6f 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile.jdk21 index 72554d642..7cfcb45c1 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.0.3/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile index f57affbf1..8e81826c1 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile.jdk21 index 947fd2851..c946569de 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.1.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile index 9fd0e9b19..8b43e1a14 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile.jdk21 index 383e56ae0..a7bc59d65 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.1.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile index 93a7b3a5b..b732882ae 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile.jdk21 index 36f036c5d..d7b64d620 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.2.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile index b4043fae6..e59d7372f 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile.jdk21 index 656689998..b4f849e55 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.2.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile index 7aeee6402..bef7df218 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile.jdk21 index cf8a5d641..0e56f8edb 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.2.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile index 953c91d94..351919fd1 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile.jdk21 index b7a9a9cde..2e62ab2de 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.3.1/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile index 7e53732e1..6b26312a6 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile.jdk21 index 9364f14aa..61468d1ef 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.3.2/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile b/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile index efb071df6..d3f4814d9 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile.jdk21 index 3708462ca..3011880e4 100644 --- a/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/9/9.4.0/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/latest/Dockerfile b/linux/ecosystem/atlassian/confluence/latest/Dockerfile index efb071df6..d3f4814d9 100644 --- a/linux/ecosystem/atlassian/confluence/latest/Dockerfile +++ b/linux/ecosystem/atlassian/confluence/latest/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/confluence/latest/Dockerfile.jdk21 b/linux/ecosystem/atlassian/confluence/latest/Dockerfile.jdk21 index efb071df6..d3f4814d9 100644 --- a/linux/ecosystem/atlassian/confluence/latest/Dockerfile.jdk21 +++ b/linux/ecosystem/atlassian/confluence/latest/Dockerfile.jdk21 @@ -29,7 +29,20 @@ EXPOSE 8091 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.3.1/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.3.1/Dockerfile index dee55a99c..dccc7fc16 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.3.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.3.2/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.3.2/Dockerfile index 5d34d21b7..1bf862def 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.3.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.3.3/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.3.3/Dockerfile index dfabb82f3..80b69fb10 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.3.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4.1/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4.1/Dockerfile index 49509b82a..6a4f9719a 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4.2/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4.2/Dockerfile index f0d6abe00..7f642993c 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4.3/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4.3/Dockerfile index e17c7cfc7..f88a8357e 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4.4/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4.4/Dockerfile index e1d7a7d0b..08fd4272b 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4.5/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4.5/Dockerfile index 9984c080c..3b87a05ad 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/0/0.4/Dockerfile b/linux/ecosystem/atlassian/crowd/0/0.4/Dockerfile index 66f79f27e..380dab818 100644 --- a/linux/ecosystem/atlassian/crowd/0/0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/0/0.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile index 11f86b540..b67be1227 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile.jdk7 index 1710a64bd..54289f7de 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.3.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile index 57630c6ed..7365beed6 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile.jdk7 index cb5e3a3b7..8e5f17b58 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.3.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile index 644e6d212..3d499dd6c 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile.jdk7 index 1ff6194eb..eee599d9a 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile index 350e87358..74d981af7 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile.jdk7 index 1a8a76f00..87479a9f8 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.4.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile index 596a54495..24e62fdd7 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile.jdk7 index 30b164ae9..93564b78c 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.4.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile index 3544d57ff..6a5b82031 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile.jdk7 index 2fe478977..3462892d2 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.4.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile index 34a2e6988..0df4510e3 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile.jdk7 index 33984e5c8..a0da289fc 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.4.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile index 1ffb2c8fd..b88e9b008 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile.jdk7 index 887d415b7..b725194e6 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile index acda14ae7..15fee2d9c 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile.jdk7 index 95f53dba2..29b7f891c 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.5.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile index 9a1269b82..7373e85ae 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile.jdk7 index 462b8859d..16e2def8e 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.5.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile index 74c585722..e503e6925 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile.jdk7 index 282407aa5..d55b29616 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.5.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile index 23dd2ada8..4ccd3afb4 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile.jdk7 index 34682495b..390209a89 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile index b1452c574..9d233c3be 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile.jdk7 index 2abf8e24a..f185b35a1 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.6.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile index 0f5948f5b..d82b94c48 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile.jdk7 index c47014c7c..ce3de4395 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.6.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile b/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile index 25ffd81cb..a2e8f5d33 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile.jdk7 index 0150a5ef8..13a000e23 100644 --- a/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/1/1.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile index da07e8a4e..992a93c07 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile.jdk7 index 570acc614..d43184c95 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile index 079e677ba..48c5528dd 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile.jdk7 index e909f4449..ff2116957 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile index a1869cea6..0363988c5 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile.jdk7 index d0786163d..a15055be2 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile index 17911bb3a..eaf4ecd14 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile.jdk7 index 6f3b26c2e..5ce3f4011 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile index 19206e825..4afa950a4 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile.jdk7 index 2f12a3065..e475ee5ad 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile index 10b1fd29a..4d705be6f 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile.jdk7 index da15b57c5..4e028a21e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile index 2e0c8a069..88afcfdfc 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile.jdk7 index c38daa145..8f030f872 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile index cc12e5b72..c5ce4778e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile.jdk7 index b161d6236..4ff4cf052 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile index 250887155..d6cc2ef60 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile.jdk7 index ee7f42020..b9c533973 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.0.9/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile index 8c3a99ebe..cb43ae9cb 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile.jdk7 index 900483068..9a2264665 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.1.0-beta4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile index c9a48c386..f38f66a01 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile.jdk7 index c12e938b7..8c380abdb 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.1.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile index caca3d42c..15c39b37a 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile.jdk7 index 2181ae26b..f16c26a50 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.1.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile index 144d234f7..58bbdac9e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile.jdk7 index a7b92df76..23f0c1a5f 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.1.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile index 5c8097517..a7f39dff4 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile.jdk7 index b33a7c419..c8823479c 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.10.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile index 8d61bcefa..f79916bfe 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile.jdk7 index 7c1cc4d2c..619f0c452 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.10.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile index 38fcb4a47..96b303cf0 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile.jdk7 index f00e4b112..51ffca4e2 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.10.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile index 1448c7ff5..6f2217bc1 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile.jdk7 index 16355f95a..6446190fc 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.11.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile index fc3e87c74..47c1d7f27 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile.jdk7 index 4b1967179..e6342b4c7 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.11.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile index 77453d831..9f3c27a69 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile.jdk7 index c9794a9e5..324073e35 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.11.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile index 0bc00918b..f03305063 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile.jdk7 index 1fc4da1f8..13bccfc89 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.12.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile index 4a64e8747..753062056 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile.jdk7 index b08913aff..e8f5fc01b 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.2.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile index 9727e13db..7c88496a8 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile.jdk7 index e78a815ab..1a6827e80 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.2.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile index c8e90db2e..9cb03d501 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile.jdk7 index 6d315afe3..d6a1885c9 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.2.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile index 2de036ecb..5c5b1bcc3 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile.jdk7 index a5e4c617a..511dd6d22 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.2.9/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile index 9de4729f0..6f95369ed 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile.jdk7 index 1167fcde4..7ea9aca48 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile index 6d3defd4d..c7e84156c 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile.jdk7 index 523ff2f7e..d2a50a238 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile index 4b7e690ba..30af9b72d 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile.jdk7 index f5808c487..425eaed2a 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile index 55fa8aa7c..bdac6f18e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile.jdk7 index 9a47353a0..4aed1bc06 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile index cdcd2558e..c1f929aef 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile.jdk7 index fa3a93305..029885989 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile index 4f3230bca..b62fff7fb 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile.jdk7 index d9a059145..b11b202d0 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile index 8494d289b..55951fdf3 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile.jdk7 index c105b6fdc..2bc242a01 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.3.9/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile index 537635d1c..5571791d6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile.jdk7 index 9d5e51bac..2ea332e7a 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.4.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile index 504a2d11f..e4132619e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile.jdk7 index 6021b513c..44c58771e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.4.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile index 16a621b1c..7ad999ddc 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile.jdk7 index 3369fa707..b49d3a780 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.4.10/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile index 290782045..a98a30cb5 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile.jdk7 index ea7861c56..e2aa3dbcc 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.4.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile index c09a8ce19..af23441bd 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile.jdk7 index eb9806e3f..f2b557428 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile index 3d1ea072a..912c1b304 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile.jdk7 index 6a8314946..b51d7853b 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile index 42f6985b4..0bdd7dbf3 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile.jdk7 index c992ca83b..2869cad34 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile index c0c32490f..5ab1f6437 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile.jdk7 index f2f8bb48d..6d1d31eec 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile index 8a9822f07..c894befe2 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile.jdk7 index 1c0c1644e..5f99834a6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile index 1350d6ea4..2168d7d19 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile.jdk7 index f7d060378..59c0a317f 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile index cda40fe4c..07cb423f4 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile.jdk7 index c7cd42c0c..f449e70e5 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.5.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile index ef3442af2..a7dbdbfb9 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile.jdk7 index 18717fcb3..a434e847a 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile index 13be4b1c4..e801a1361 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile.jdk7 index a100235b9..31d2adb36 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile index 6f0da3d0a..c725627f5 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile.jdk7 index cfb611174..7448b58c2 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile index 32250a2a8..6e46bf707 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile.jdk7 index 7ca9722be..c66ed8b73 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile index 9129da2ec..b5be33560 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile.jdk7 index fd9c71594..e91f8e711 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile index 3a74cc87c..361a9d5ca 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile.jdk7 index 39e4cf408..feb230d16 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile index 7d910bc83..37ab41aa6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile.jdk7 index 5db0c8bff..b3e2a648e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.6.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile index e28a2d68a..4e63d4cfb 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile.jdk7 index 5155c656a..f39a4ebab 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.7.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile index 261ebbb4c..00140e580 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile.jdk7 index 01484e0f3..6f0d0653e 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.7.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile index 893bbe12a..180da58d2 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile.jdk7 index 2629ad470..b255971ac 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.7.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile index 8b80010bf..264f46428 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile.jdk7 index 6533027b8..00d7a0fa6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.8.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile index 972b27371..45e5a6971 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile.jdk7 index 005b7e429..25f50d8bd 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.8.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile index 721a910f0..3a527b2c6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile.jdk7 index 1acd5071d..04c52df32 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.8.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile index e92f775fd..51a3480bf 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile.jdk7 index 5b27b8ad8..1f232eed6 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.8.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile index 88692c607..f1d617f31 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile.jdk7 index 46cb250f7..528092ef3 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.8.8/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile index 2e999f0fb..8a4f3c27a 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile.jdk7 index caa741485..de4fb10f1 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.9.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile index cd6e6b231..627366163 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile.jdk7 index 4cc06e0ef..724c1510c 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.9.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile b/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile index 1f4b7d67d..a77fe5b15 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile.jdk7 index 05c7e97ea..35cfe0a9c 100644 --- a/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/2/2.9.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile index dd6d346b9..87e59d854 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile.jdk7 index 0e899d70a..7518e9a97 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.0.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile index 8cc9a80fc..ad73723e0 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile.jdk7 index e5db7834e..991eba31f 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.0.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile index a9865b762..32ea5c2ad 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile.jdk7 index ef4910165..9ba0a0a4e 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.0.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile index 249145be4..9b3549712 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile.jdk7 index d91b34307..64c7e3cf6 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.0.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile index e4b042a7b..9f7041bd9 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile.jdk7 index b89d6b9bb..de06f9112 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.0.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile index ed8d8cd2a..80e8e3ebf 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile.jdk7 index ee246b709..24e37ef83 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile index 6a3729d13..85d25aa3e 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile.jdk7 index b59a6e953..132523e31 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile index feaa1d9d2..ca5baa337 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile.jdk7 index ced16c0c9..fd22ec086 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile index 87ac35dc6..90c7dfe67 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile.jdk7 index fdc4abba8..2083832e2 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile index 5937cc7fe..2087568f8 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile.jdk7 index 1c137c05b..8a703e207 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile index 6c6d5e551..468bf669b 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile.jdk7 index 751cb6050..13198c646 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.1.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile index bf7596e1e..1b9da1d30 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile.jdk7 index 852238ca5..f522f7231 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile index d10e22439..b3a328504 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile.jdk7 index 4586a8c45..c81e54fdc 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile index 176a5a8f2..fede121fc 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile.jdk7 index ced6cf5bf..2075276ad 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.11/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile index 5a88bbf4f..8c268e50c 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile.jdk7 index 210a78719..6140e0b9b 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile index 7fa2bfea3..a5027e481 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile.jdk7 index 2ab39a4ab..b7de20243 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile index be2ae5878..63cfb090c 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile.jdk7 index 718927cc2..fff8a542b 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile index 7d1c551d0..f0d2a5d6f 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile.jdk7 index 88c371ebe..6106aaccf 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile index b80eed906..8ccb89028 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile.jdk7 index 340f68f67..17e4dbe87 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile index 3d0a48b12..c272c0cb1 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile.jdk7 index 3ef1c525f..2277e58f8 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.2.8/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile index 900d742a6..dfd903563 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile.jdk7 index 5d2f4c852..b75575b0e 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile index 809604330..1a30156a2 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile.jdk7 index 0db771828..c12f36154 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile index 1826f73f4..3219be7aa 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile.jdk7 index 40b42d649..14908cd80 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile index f0b0c0fd6..cfb35693b 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile.jdk7 index 47ad32e23..390698455 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile index 2e29532a5..fa2e7c0c3 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile.jdk7 index 610d19460..f342dfe15 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile index 4a688dae9..6978bafdf 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile.jdk7 index 0a04237f8..c4c0bcc43 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile index c0a25d987..10e0db8cc 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile.jdk7 index 0f7d62a6a..b5350f1c0 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.3.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile index d96e278a6..8a3ca39f8 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile.jdk7 index ec603f53d..f31384cbe 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.4.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile index 4432f1fca..ea8a3462f 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile.jdk7 index dad73cbc3..dec0f72ae 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.4.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile index 5bd19d9f6..eb74fa880 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile.jdk7 index 5ef32e206..43a5dc686 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.4.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile index 2beca12c7..b01c424c2 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile.jdk7 index 8bf6b3852..0e4bfe254 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.4.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile index 216da961c..55c94440c 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile.jdk7 index e37c3c42f..755675bc6 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.4.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile index 435dcf45e..ab5626f35 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile.jdk7 index dcbf5f619..63fd178a6 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.5.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile index 4d999112d..49492a7d2 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile.jdk7 index fb5ef8da8..897edc01e 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.5.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile index cc058352f..b06f70e88 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile.jdk7 index 90074283f..6ea58c778 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.6.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile index 1a0d505e3..3caa4456c 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile.jdk7 index 0f10e0c6b..103d8ff7b 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.6.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile index 724f04d72..67a9c2840 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile.jdk7 index a35f052e1..c27e35595 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.7.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile index 179f32be5..5fd1f5ed7 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile.jdk7 index bd5f218ea..9e46e82ad 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.7.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile b/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile index 0afd45227..463c203de 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile.jdk7 index c7e383b0a..01e9721fd 100644 --- a/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/crowd/3/3.7.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile index e69d42e4b..ef5c95ab7 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile.jdk11 index c15adc7b3..15b1c3ea1 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.0.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile index 696900afa..fd4913c07 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile.jdk11 index 96fbb0cb8..38edb6203 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.0.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile index c4135768c..5ad09f795 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile.jdk11 index 455646207..37829e944 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.0.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile index d5bf48ce5..9c458590e 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile.jdk11 index 742321ae5..72a4a2ae0 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.0.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile index a25d82db4..034c504b2 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile.jdk11 index 52ee5a5bc..8ccb8ee21 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.0.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile index e940dfb8c..628f4d858 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile.jdk11 index 12ef8baa8..1ead1c016 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile index de8cb16ed..52dfeb23c 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile.jdk11 index 76e64d99b..aa8d390f5 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile index 788e14fa0..dba484b7e 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile.jdk11 index d881ce08b..fe0507dbe 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile index 63dadbadf..a6d3f28bc 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile.jdk11 index 1d2358bd4..97840fd05 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile index fa69c2d5a..044e01a27 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile.jdk11 index 60ab2c4ce..74aca3de1 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile index b3eaf4819..291de59e5 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile.jdk11 index 3f154b7eb..f52dc5dbb 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile index 8ae5fde81..3fb150f3e 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile.jdk11 index a81858531..f027ea092 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile index ee548480f..7315a3569 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile.jdk11 index 24b82d4ed..00a2a65ab 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile index ac2fbfcf4..3d1e82e8f 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile.jdk11 index b394ce743..8924b6fd3 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.1.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile index 5dce0d4a6..a36b437d5 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile.jdk11 index f0f73dd05..c108db464 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile index f6e5b9070..95cb9273b 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile.jdk11 index 203956237..0afc16984 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile index f58977cb9..7dffafc98 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile.jdk11 index 403a4ca32..71d877848 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile index fdf599021..6b317b4da 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile.jdk11 index 6bcc7c650..7c16bbd54 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile index 890c9334d..4d09f08fc 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile.jdk11 index 518081731..04d967184 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile index 9e0e8a953..e4e103762 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile.jdk11 index 1c2e0f3aa..e7ad3e41c 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.2.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile index 8445a0a38..1840e62e0 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile.jdk11 index 637dca15e..ae73ddd96 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile index f7972522b..6ebd0baca 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile.jdk11 index 739512f97..46a0c44e2 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile index 69fde61dc..c617f3574 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile.jdk11 index fd860c0e1..70a4a52ee 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile index 641cb26ab..4db860863 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile.jdk11 index 5c3007366..48f9387d6 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile index 040e3c5d4..93eaf8085 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile.jdk11 index 5a10d4553..2ffd1e556 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile index 27c14cb06..b0dac8dbb 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile.jdk11 index 5605c8262..033722769 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile index 9c3331077..c4f95df91 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile.jdk11 index 918105ceb..97bf2f607 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.3.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile index 9d1a4fea6..86cf0af87 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile.jdk11 index a1246567b..9322b6063 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile index f2b7e009a..fced7d7a7 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile.jdk11 index 1d7ae0242..2144863cf 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile index 59f8b87ad..57de7617d 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile.jdk11 index 552ac57b2..5312c4d99 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile index 5492bd160..59fcc67b2 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile.jdk11 index 8a7135646..f26ec018c 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile index c4b9bab6e..a76db4ef0 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile.jdk11 index 8a77e2338..1076487f4 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile index 602dc5697..77f994fb9 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile.jdk11 index a492ba6a2..a051f257b 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile b/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile index fe536b85a..0f7d59456 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile.jdk11 index f5de5bf49..fd8a346a7 100644 --- a/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/4/4.4.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile index 2e395923b..fe75ad140 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile.jdk11 index 4f030e2c7..91ed68d18 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile index 410f63615..62ddd5083 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile.jdk11 index 7adfcda56..5c8337210 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile index b87eb9fc7..9a6a77b24 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile.jdk11 index 6108a2b4e..4a89c5b13 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile index c8692e4d2..ee12a78e2 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile.jdk11 index 2503bb7d2..cb385353f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile index ecf17925d..d08338843 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile.jdk11 index 22829ce9f..1fb50c3cc 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile index 590bae827..d549380c8 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile.jdk11 index 0e636fead..ed1e5cbe8 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile index 540b2794f..7b827e480 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile.jdk11 index 583ccfd4d..03a3940da 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile index 6f94c7297..7352ef8ac 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile.jdk11 index e8f009a5b..36e2fb80a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile index 404dd660a..4b66f4af3 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile.jdk11 index 408c70d08..53351eec4 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile index 13d8b70d0..7aec0f091 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile.jdk11 index b02f40f4d..45f8f5afb 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile index 6ca48b4f8..1bc68610e 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile.jdk11 index d0c4c7154..a74dd0210 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile index 45c9cb6f2..9200e1b19 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile.jdk11 index 8f5b8ca9d..20d1efbdb 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.0.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile index 258a77d5f..c94adbf6c 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile.jdk11 index e822cdb16..bd718590b 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile index b692e165a..494464f3e 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile.jdk11 index 2ae99c698..683788017 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile index 0d08b5b03..3cc2d7990 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile.jdk11 index 2fc85a002..8091dd8b5 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile index 73997e2ba..319bbe993 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile.jdk11 index 8aa20465f..57af6861d 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile index 290a52266..2a950ee8f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile.jdk11 index b12907595..39444dd88 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.13/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile index e9585fd75..8d89d5386 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile.jdk11 index f39970aa9..d533c0d12 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile index 0136bef65..e0a621f9a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile.jdk11 index bea672570..e13f22e3c 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile index 7bdfadffb..a72cf14d8 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile.jdk11 index f28c4c71f..a0fe8df49 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile index 094991e91..dd9ac8d48 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile.jdk11 index 061c2e752..32d4f2997 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile index 4da5cfc20..c26ffca7c 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile.jdk11 index 19152006c..1400a3657 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile index d1bc572ed..2b345581d 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile.jdk11 index 1c18b2468..279af88c6 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile index 4d6187252..b2e95e665 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile.jdk11 index 4bc5776f1..c59a73d5b 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile index 9ab83364c..15f5c8aa5 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile.jdk11 index e71a24959..263bfc48f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.1.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile index db7ae3041..dd5b2427a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile.jdk11 index 07a13c820..4b5a85bc2 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile index a44c61e22..45a6da127 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile.jdk11 index 4e164f978..ea12506bf 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile index dc63988ed..39779a76d 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile.jdk11 index 5457484aa..def2c5e08 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile index 17a3c2eed..ab18798de 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile.jdk11 index afb34a0b8..9c2a66d3b 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile index 4da078dc8..e6188a3a6 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile.jdk11 index 49b394f49..0e57bf499 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile index 824a5a26b..1b80c620a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile.jdk11 index c04d4b442..d4a3efae8 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile index 1e079b739..9b6e3467f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile.jdk11 index dd3e618ef..7ead0c45a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile index 9d0295dbc..0887d1c9a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile.jdk11 index 845ae2506..99bca20c4 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile index 77a17085e..380e71b1d 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile.jdk11 index 859ab7662..18491aeb3 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile index ab9820033..4a32620ec 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile.jdk11 index 3dde81a9c..41360b441 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.2.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile index 62cddb948..750e6eb17 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile.jdk11 index 6b3d1b643..63829cd51 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile index 6bbb4bd64..ee6927085 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile.jdk11 index 862612126..5d4fa755c 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile index 2b6b0b5b7..5eb19e4db 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile.jdk11 index abb2968e9..ca67c107f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile index 679fc9cae..e1f2780a6 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile.jdk11 index e60dbdf1b..750e7fd2a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile index 472bf3384..402a2ec2a 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile.jdk11 index 83882e1c8..cb3cf8837 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile index 982828a04..4429d8253 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile.jdk11 index cf6c5cad6..5e3334e7f 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile b/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile index baa188711..7f85ae451 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile.jdk11 index 203abba96..0c42eb079 100644 --- a/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/crowd/5/5.3.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.0/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.0/Dockerfile index d86c5ffbf..61a99b30e 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.1/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.1/Dockerfile index 9ef54525e..3d3d3b509 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.2/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.2/Dockerfile index 44911e74a..52b3702f5 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.3/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.3/Dockerfile index 1bacd0862..e4178fde4 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.4/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.4/Dockerfile index 8cebcf68a..34c09280d 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.6/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.6/Dockerfile index e0fe66562..141475be2 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.6/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.0.7/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.0.7/Dockerfile index 1ebb4dfab..58bdc6621 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.0.7/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.1.0/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.1.0/Dockerfile index bd3626801..4c54045bb 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.1.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.1.1/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.1.1/Dockerfile index 29ad46fa7..840aed1ef 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.1.1/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.1.2/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.1.2/Dockerfile index b529e6e7d..9d8e3ce52 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.1.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.1.3/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.1.3/Dockerfile index fb8995916..073d51dce 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.1.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.1.4/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.1.4/Dockerfile index 05fe59b1c..c688e09a0 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.1.4/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.2.0/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.2.0/Dockerfile index 22f3b54e1..b97e8cfc8 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.2.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.2.2/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.2.2/Dockerfile index 19eb9fa41..a857f3520 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.2.2/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.2.3/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.2.3/Dockerfile index 9330125fb..ae006547a 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.2.3/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/6/6.3.0/Dockerfile b/linux/ecosystem/atlassian/crowd/6/6.3.0/Dockerfile index 0f27a2a16..e90dfdbc1 100644 --- a/linux/ecosystem/atlassian/crowd/6/6.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/6/6.3.0/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crowd/latest/Dockerfile b/linux/ecosystem/atlassian/crowd/latest/Dockerfile index 0f27a2a16..e90dfdbc1 100644 --- a/linux/ecosystem/atlassian/crowd/latest/Dockerfile +++ b/linux/ecosystem/atlassian/crowd/latest/Dockerfile @@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN apt-get update && \ apt-get upgrade -y && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.0-build-223/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.0-build-223/Dockerfile index ceb2a1c11..5323e3fcd 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.0-build-223/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.0-build-223/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.0.3/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.0.3/Dockerfile index 011b0c106..1d46f8922 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.0.4/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.0.4/Dockerfile index 2c42d3dfb..e3b94b9ea 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.1.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.1.1/Dockerfile index 8f110076a..b920b19d0 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.1.2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.1.2/Dockerfile index cdeac1614..48539d81e 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.1.3/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.1.3/Dockerfile index 0111673ef..dd6d348cc 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.1.4/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.1.4/Dockerfile index 6862f66b2..52a7754a5 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.1/Dockerfile index 23804d3c0..3ab2be8a5 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.2.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.2.1/Dockerfile index 8a878d944..896c36e9d 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.2.2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.2.2/Dockerfile index 8bad4e44a..9ce266138 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.2.3/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.2.3/Dockerfile index 32f26026d..e9ccf3cad 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.2/Dockerfile index 4bdbd8dfe..ef4458df2 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.5.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.5.1/Dockerfile index d8ba2f34a..dc05bdab7 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.5.2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.5.2/Dockerfile index b665987ab..437312951 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.5.3/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.5.3/Dockerfile index 2671919e3..cd2f9b4b8 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.5.4/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.5.4/Dockerfile index ecc874479..0135fb984 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.5/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.5/Dockerfile index a6add0d6c..6ccb9d80b 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.5/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.0.beta1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.0.beta1/Dockerfile index 353b11545..36b693cbf 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.0.beta1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.0.beta1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.0.beta2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.0.beta2/Dockerfile index 9d132faf0..0e35f9754 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.0.beta2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.0.beta2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.0/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.0/Dockerfile index 0dc6977fc..64198e69b 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.1/Dockerfile index 42ba89a65..56d1cce5c 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.2.1/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.2.1/Dockerfile index 2bd8f1023..9fb404af1 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.2/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.2/Dockerfile index 1e7efcf81..f4296afc6 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.3/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.3/Dockerfile index 23dc9cf57..65ca6f21c 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.4/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.4/Dockerfile index 044ec7dcd..1cdf65de2 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.5.a/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.5.a/Dockerfile index 39c644da1..a3766852d 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.5.a/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.5.a/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.5/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.5/Dockerfile index 88d0c1090..00312943d 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.5a/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.5a/Dockerfile index 485de2cd6..095df1efb 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.5a/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.5a/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/crucible/1/1.6.6/Dockerfile b/linux/ecosystem/atlassian/crucible/1/1.6.6/Dockerfile index c66c8632e..d033539e4 100644 --- a/linux/ecosystem/atlassian/crucible/1/1.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/crucible/1/1.6.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.B3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.B3/Dockerfile index dbc69fbca..fff9129af 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.B3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.B3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC1/Dockerfile index b301d89f7..11e251687 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC2/Dockerfile index 84d30d602..8d9a6c655 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC3/Dockerfile index 4a063c63d..a1062a3fc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0.RC3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0/Dockerfile index a8e21f544..ae8d9316d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.1/Dockerfile index c7c007800..44c723ff8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.2/Dockerfile index fd2f28396..44e3c52e5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.3/Dockerfile index 0c55b2200..ade8d0592 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.4/Dockerfile index a381e808b..5203b19b9 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.5/Dockerfile index 8bea7f538..fc146c029 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.6/Dockerfile index 27900e136..0bc9660fe 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.0.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.M2cc/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.M2cc/Dockerfile index f9c82e882..037c24f1d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.M2cc/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.M2cc/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.RC1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.RC1/Dockerfile index d32803319..f4bb99ea8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.RC1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0.RC1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0/Dockerfile index 5a4af5e7e..7291603de 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.1/Dockerfile index b4a9e494e..8e83c037c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.2/Dockerfile index bcd8c0451..20a261299 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.3/Dockerfile index 3913ad8e6..ddf9c5e57 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.4/Dockerfile index 4bfcdb180..9ac512116 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile index b61af1acf..765578f57 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile.jdk7 index f841b3594..34112d303 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile index 5776e9293..58b0beade 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile.jdk7 index 2b2dd9e8c..590d1216f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile index 6b08c9275..44c381ce8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile.jdk7 index b5b4ad6e7..d8672e8c2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile index 37eb04cd9..5acf952ca 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile.jdk7 index 65b786eb0..eecdcb97a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile index 77bfde888..82c60d0e2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile.jdk7 index a1615409a..4caaf3819 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile index 9c8737d97..822f0e854 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile.jdk7 index c8342643c..827ec3eda 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile index cb4d739cd..1509da4bc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile.jdk7 index 789b76a68..d1073bc22 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile index 328cfa660..9e19fc7b3 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile.jdk7 index a4cc618ec..96e840c2a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile index 18d9e1db5..8139682a2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile.jdk7 index 7c5d0ead9..656ba0d70 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.10.8/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.0/Dockerfile index 0d3a104d7..4f91b2261 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.1/Dockerfile index c42624b13..75ca8639b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.3/Dockerfile index 581783578..2148c30bc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.0/Dockerfile index a29a1c5df..c8daa9696 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.1/Dockerfile index ca08b1725..63982e0e7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.2/Dockerfile index 23de43649..afa542247 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.3/Dockerfile index a48af8924..854846f27 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.4/Dockerfile index 1c1690f13..9cceb258b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.5/Dockerfile index 5c2a010a8..66e56aaa4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.6/Dockerfile index 4195e09a0..5cc186774 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.7/Dockerfile index 98235c4a3..af2f6a64f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.8/Dockerfile index 773c494da..c2e9faf2f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.3.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.0/Dockerfile index fbe907d83..0fc63424f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.1/Dockerfile index 0a5c56539..a7e3c897f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.2/Dockerfile index 25ded2b27..e0fc0b318 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.3/Dockerfile index 77596c498..80e0806dc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.4/Dockerfile index ecee41bcb..279bd5b6c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.5/Dockerfile index 7bf53b5d9..4857e1c63 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.6/Dockerfile index 04f963172..e53c33b03 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.0/Dockerfile index 1735334be..9459b67d6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.1/Dockerfile index c15f3dafe..fd019d378 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.2/Dockerfile index 8e49a68f0..0d653a9f3 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.3/Dockerfile index f039573bd..cd93dc843 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.4/Dockerfile index 2948fe3fb..d79fe8c1d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.5/Dockerfile index 353e1577f..62b3d4447 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.6/Dockerfile index 65efe0b1e..2b1068148 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.7/Dockerfile index 2ff02868d..47cf3ed61 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.8/Dockerfile index 7def038d3..fb7e231ae 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.9/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.9/Dockerfile index d614f73db..2e7f0f658 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.9/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.5.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.0/Dockerfile index da1a281d1..ec0e76537 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.1/Dockerfile index 3863c3be6..55353cbc5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.2/Dockerfile index e7d3a3290..e7dca5746 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.3/Dockerfile index 5c4ba6477..fa55aaa25 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.4/Dockerfile index 75120cd7e..23c55ef70 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.5/Dockerfile index 3ac7651d3..51b5e09a8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.6/Dockerfile index 6bda88b99..992ad69c6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.7/Dockerfile index b1e63dae8..a0fde20dd 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.8/Dockerfile index 4c6b2ed24..f3485cf4b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.9/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.9/Dockerfile index 18558c289..7665e0108 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.9/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.6.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile index 6a5eaaa92..56fbfa657 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile.jdk7 index 6ae2b0b3c..04382c195 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile index 10acf373f..07606f39c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile.jdk7 index 2e8445a3d..72ae7469a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0-EAP-2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile index d9c1ddadc..3b58513c8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile.jdk7 index 9ede05e67..fa1b44eda 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile index 3b07bc7b8..73910cd9d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile.jdk7 index e0e0b09eb..38afbae23 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile index 7e2238dc9..c849b0785 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile.jdk7 index 95d6238b8..7166028a6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.10/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile index 4dde3b472..f12287a65 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile.jdk7 index 3a04ed3cb..ae0e369d8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.11/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile index 582839bb5..6ee008786 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile.jdk7 index 1ba3a6ac8..e3b9a0c77 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.12/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile index 12d5dca88..67ed1f4df 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile.jdk7 index c1d5025e2..dc31c1015 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.13/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile index d208f7457..c20d5e23c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile.jdk7 index 0d02e3ecb..cf2de7f3d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.14/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile index 423504389..f818cec8f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile.jdk7 index 7316e4bd7..36f1d35ca 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.15/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile index f8e1fda49..38e213459 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile.jdk7 index 712a80e9f..5ce5567d2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile index b3186955d..28e945c30 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile.jdk7 index f2906cee9..ef006e402 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile index 55dd2bff8..bafb73c54 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile.jdk7 index 2b788125a..7b7f590fc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile index cec29307c..acaaee3b8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile.jdk7 index d17cdc6d2..f8767257c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile index b0f7c7e57..c222884ef 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile.jdk7 index 26fdeed02..094f635d3 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile index a45022971..c51fa7a80 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile.jdk7 index 561ae9589..0eaec0c8f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile index c6e9622ed..350439980 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile.jdk7 index 28a9265b4..6bdee7bf4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.8/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile index 57a581ac7..5adbf4cb5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile.jdk7 index 591ceea0a..d263a79ff 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.7.9/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile index 8e981eb5b..a072d968a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile.jdk7 index f4e2f1845..1f26ca852 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0-m1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile index 9c0f0c0f8..12380bc92 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile.jdk7 index 3bab54d18..d76d7d3d0 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile index dd0db1646..0b57a3761 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile.jdk7 index 2b8ab612d..3cca12adf 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile index b35161082..5c460a576 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile.jdk7 index a65a3494f..a17dfb5cf 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.8.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile index 812729a9d..a88d3ba2a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile.jdk7 index 079c79ccc..0158ea5e9 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile index 3c6576746..7acce4b79 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile.jdk7 index f1a80035d..236a5e235 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile index 37629fe96..6e86dc3a5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile.jdk7 index e11ff359f..9c5a34462 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/2/2.9.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile index ef08a31fa..4790cb7e6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile.jdk7 index ba00d2358..b22a719f7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile index aa8af2e02..7aa991ccc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile.jdk7 index 5bdffcef4..c2111cb46 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile index 488335f75..a27d1ccca 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile.jdk7 index e8b4767c9..eb5e3daf7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile index 09c92a3f2..18a86fdeb 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile.jdk7 index 87ef0e5a1..04a93aac4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile index ee55d527c..4d91fd123 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile.jdk7 index 9cbd146b8..aced48f9b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.0.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile index 9ca80d0c7..7736826cc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile.jdk7 index d0b614054..395c5fc69 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile index 1d0d9ec83..2378f6a51 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile.jdk7 index 91c619a5f..7bf451ede 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile index 189d86fc6..af36c3dda 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile.jdk7 index 7bcdac55b..ebdb84a53 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile index f9384bfbd..212c1d3c7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile.jdk7 index db6f5b426..98bc810f4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile index ecd8acebe..64dae210b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile.jdk7 index 6abd65631..11d926907 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile index cd5fd0aed..7954b42c8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile.jdk7 index 9aedf3533..496c2f2d5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile index cb20f43b0..37682aa7e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile.jdk7 index 86e1ab6ac..c6b556f49 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile index dc871178b..70d7d8079 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile.jdk7 index 2dc3e19ed..40480d0fe 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.1.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.1/Dockerfile index 06f9535ea..6cf84237a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.2/Dockerfile index 91e387196..b312abea4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.3/Dockerfile index de9f26787..0aeff8808 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.4/Dockerfile index 033015d6b..21413a51d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.10.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile index 6bfe2b504..2334659c4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile.jdk7 index 55a6139e2..eec1b45b8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile index 1e771cf28..81c628c81 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile.jdk7 index f95e46e5b..e85f9950f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile index 2449ebe20..93870f075 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile.jdk7 index 0091887a1..a90c5bea5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile index 0fd621b98..a154f378a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile.jdk7 index 7c404893d..cb8f5ccb8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile index eefe44121..f9c87d045 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile.jdk7 index 8095775f6..d2b7c20cc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile index 132e146a5..436a1fea6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile.jdk7 index 993f8c9ba..14b2e63bb 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.2.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile index 3d5736dc3..4183939b4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile.jdk7 index bcc2d41bf..f5406db1d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile index 91346568c..96acd09d2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile.jdk7 index ee6ac9bd1..962fc4ba1 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile index 1695b595f..25b0a79d8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile.jdk7 index 8d17f7a4a..09a5c8ef7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile index 075ae29af..f34ac23c4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile.jdk7 index 5f57c6c42..d6771bf2e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile index 069f64898..4b291dce3 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile.jdk7 index a73ced148..15f6e772d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.3.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile index d158e7bb2..660d1736f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile.jdk7 index cf633f43c..7eb497944 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.0/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile index 5fe6ee916..3513d0ba4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile.jdk7 index a0d3326e3..866d79597 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile index 1d9a833a2..891c21f70 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile.jdk7 index 58dc655fa..6ce653b24 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile index f440acf1b..2a8e05372 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile.jdk7 index 65a2f225b..88a3473d4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile index 0ca71eddc..ce8c60a85 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile.jdk7 index 36f27a6ae..be5a159f7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile index d7a4c387f..555ed2086 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile.jdk7 index 9b5153131..b300899f4 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.4.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.0/Dockerfile index 27a7c86bb..07b0dffd2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.1/Dockerfile index 7733f902e..e040c9af6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.2/Dockerfile index d4f5625aa..6497b8139 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.3/Dockerfile index 7ac68967e..6ce8482ca 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.4/Dockerfile index ba7c46935..4c1812a68 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.5/Dockerfile index 3fddc8b71..f285166f8 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.5.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.0/Dockerfile index 947ac1566..72074fe5a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.1/Dockerfile index 512967dd6..f9088481e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.2/Dockerfile index 65cacbf54..df76c2f2a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.3/Dockerfile index befc6bec4..de05531cc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.4/Dockerfile index 7a861fef1..838a79086 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.0/Dockerfile index 6e26ee9f7..8ef6c4668 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.1/Dockerfile index b0a2825da..421d6260b 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.0/Dockerfile index 3b2699c6e..41f6bbbe0 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.1/Dockerfile index 1df5c7153..f0817b6f0 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.0/Dockerfile index c12513760..f7ebfca1f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.1/Dockerfile index b91a8f259..d27a1149d 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.2/Dockerfile index 2b554177d..3cdf75a8f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/3/3.9.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.2/Dockerfile index 59ba7535a..cc3162b33 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.3/Dockerfile index e9152ec76..e4abfe043 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.4/Dockerfile index 48ec61954..807b98b9a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.0/Dockerfile index 40cbe28bd..80121d880 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.1/Dockerfile index a6e1bdf50..bf1b2824e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.2/Dockerfile index cf9ce4049..7e4967c89 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.3/Dockerfile index 5895bf82f..9a3895400 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.0/Dockerfile index 5a265430a..c5e619b54 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.1/Dockerfile index e250234df..1b51b57cd 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.2/Dockerfile index f0708c749..c9c354647 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.3/Dockerfile index d0d55c9f6..1efa5f07a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.0/Dockerfile index 9e1d432b6..b4cc43eef 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.1/Dockerfile index 4e38c2888..d3166ef1e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.2/Dockerfile index da2d9f4d1..4232f9510 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.3/Dockerfile index 70f3f52e2..2bdb9b765 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.0/Dockerfile index 6f005a58d..0264c7c46 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.1/Dockerfile index ebbfac0f4..9c4831197 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.2/Dockerfile index 0bb1da89f..e68f23f9e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.3/Dockerfile index dea65adbd..fa1962b66 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.5/Dockerfile index 198caf231..7e39529c1 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.6/Dockerfile index bf08539bf..7df15b0c6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.7/Dockerfile index ebd80250f..ca15b53ae 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.4.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.0/Dockerfile index 72b2c29bf..58379f8f5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.1/Dockerfile index f2ea3d449..cdf4e439f 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.2/Dockerfile index e3fd4b657..f0b3682df 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.3/Dockerfile index 883816b6a..fad77ee95 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.4/Dockerfile index 3001c7718..32212970a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.0/Dockerfile index fc9af9e4e..c4352e6ea 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.1/Dockerfile index 17ef49874..64712643e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.0/Dockerfile index 8c25ef635..e94d3bd0c 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.1/Dockerfile index 2bc6f280f..823f71cd3 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.2/Dockerfile index 20d3b6a8f..9e84fbfb6 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.3/Dockerfile index 9b573714b..5d998ff61 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.7.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.0/Dockerfile index 59116863d..aa5975976 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.1/Dockerfile index 11084cf7d..46fa4d832 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.10/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.10/Dockerfile index d7889affb..939cf8d01 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.10/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.11/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.11/Dockerfile index f21530c8f..502987fc7 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.11/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.12/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.12/Dockerfile index 6809c6996..78390603e 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.12/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.13/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.13/Dockerfile index d5ddf85c9..7d4206cba 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.13/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.14/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.14/Dockerfile index e44d2ca54..4e1c92609 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.14/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.15/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.15/Dockerfile index b42f7666b..2c4a5bafc 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.15/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.16/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.16/Dockerfile index 6b9c87f81..a4238fec5 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.16/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.2/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.2/Dockerfile index 87095880a..a374801ef 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.3/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.3/Dockerfile index 58cf16e6d..1e8251eab 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.4/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.4/Dockerfile index 0e6c378c4..462ba2210 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.5/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.5/Dockerfile index 4aeb5ceac..2dd38ff9a 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.6/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.6/Dockerfile index 171e8e37f..2ccee1750 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.7/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.7/Dockerfile index cd0bf2b42..dd174eddd 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.8/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.8/Dockerfile index 443fbbd71..1fbf1d8d2 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.9/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.9/Dockerfile index 8ef79fa6e..7d990c263 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.9/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.8.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.0/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.0/Dockerfile index 3a48f78d2..e7ba14929 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.1/Dockerfile b/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.1/Dockerfile index 99ef203f6..d8cd5e749 100644 --- a/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye-crucible/4/4.9.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.0.1a-build-br78-94/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.0.1a-build-br78-94/Dockerfile index 95311ceb6..03411a8d6 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.0.1a-build-br78-94/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.0.1a-build-br78-94/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.1.3-build-1.1-119c/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.1.3-build-1.1-119c/Dockerfile index f59a0aeb9..e3c407587 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.1.3-build-1.1-119c/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.1.3-build-1.1-119c/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.2.5-build-201/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.2.5-build-201/Dockerfile index e24f73f2b..4365e1dc2 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.2.5-build-201/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.2.5-build-201/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.3/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.3/Dockerfile index e28c0c2fb..e2a2d06ed 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.4/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.4/Dockerfile index c8f7dce3c..a1121e184 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.5/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.5/Dockerfile index 3abec8806..a12e260a9 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.6/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.6/Dockerfile index 5b21147a4..b6d09eba9 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.7/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.7/Dockerfile index 7c04009dd..f20847ee6 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.3.8/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.3.8/Dockerfile index 14b277f70..757ef9b72 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.3.8/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.3.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.4.1/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.4.1/Dockerfile index 1f846efaa..2a9914cfc 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.4.2/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.4.2/Dockerfile index 0a7fdf13e..a5b78a2e9 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.4.3/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.4.3/Dockerfile index 52c475e28..62033cf1e 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.4/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.4/Dockerfile index b612fe140..080feafde 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.5.1/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.5.1/Dockerfile index a6cac17e5..057f8706b 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.5.2/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.5.2/Dockerfile index 96122bf80..ffbb1a27c 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.5.3/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.5.3/Dockerfile index bf295bbc3..e43bb794f 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.5.4/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.5.4/Dockerfile index 33a37911a..36647e06f 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.5/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.5/Dockerfile index c676822a4..6ebd1f8b5 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta1/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta1/Dockerfile index f6d08f2ae..b36d2f8ad 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta2/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta2/Dockerfile index 99be3d8e8..0c4bc1b3b 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta2/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.0.beta2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.0/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.0/Dockerfile index 0a0efecf9..bec89d83a 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.1/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.1/Dockerfile index b2639bb46..24761f6d5 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.3/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.3/Dockerfile index f5252e41f..1ab0e70c4 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.4/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.4/Dockerfile index e45e43ed3..5cf2b59ab 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.5.a/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.5.a/Dockerfile index 8beec548f..278452583 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.5.a/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.5.a/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.5/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.5/Dockerfile index d55363838..526dd2983 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.5/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.5a/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.5a/Dockerfile index bccfcff0f..2fb19d456 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.5a/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.5a/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/fisheye/1/1.6.6/Dockerfile b/linux/ecosystem/atlassian/fisheye/1/1.6.6/Dockerfile index 3db3f4986..98dfcb04e 100644 --- a/linux/ecosystem/atlassian/fisheye/1/1.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/fisheye/1/1.6.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8060 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \ 7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.0.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.0.0/Dockerfile index d0d073cf4..ad0d37bfb 100644 --- a/linux/ecosystem/atlassian/jira/10/10.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.0.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.0.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.0.1/Dockerfile index 2aff4c0a3..51d07d113 100644 --- a/linux/ecosystem/atlassian/jira/10/10.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.0.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.1.1/Dockerfile index 8631380eb..422a10cb4 100644 --- a/linux/ecosystem/atlassian/jira/10/10.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.1.2/Dockerfile index 5da8bdee9..2a865b59b 100644 --- a/linux/ecosystem/atlassian/jira/10/10.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.2.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.2.0/Dockerfile index 53dbcc269..40076277a 100644 --- a/linux/ecosystem/atlassian/jira/10/10.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.2.1/Dockerfile index 139ce4325..3284af7ad 100644 --- a/linux/ecosystem/atlassian/jira/10/10.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.0/Dockerfile index 20ad0d61c..486a066f1 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.1/Dockerfile index a4e6d5f67..2cf1958e5 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.2/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.2/Dockerfile index 533b31d85..1b0718a9e 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.3/Dockerfile index d14553c2f..613291a6e 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.4/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.4/Dockerfile index a9d0fa2f8..b3b576bc9 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.3.5/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.3.5/Dockerfile index 7ebf995d3..ceebc827d 100644 --- a/linux/ecosystem/atlassian/jira/10/10.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.4.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.4.0/Dockerfile index 8bd6de20c..f96391daa 100644 --- a/linux/ecosystem/atlassian/jira/10/10.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.4.1/Dockerfile index 17c8b9cd0..8f06f108f 100644 --- a/linux/ecosystem/atlassian/jira/10/10.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.5.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.5.0/Dockerfile index 81d3e0aa1..da15cd463 100644 --- a/linux/ecosystem/atlassian/jira/10/10.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.5.1/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.5.1/Dockerfile index efb142e2a..c31b2b9cd 100644 --- a/linux/ecosystem/atlassian/jira/10/10.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/10/10.6.0/Dockerfile b/linux/ecosystem/atlassian/jira/10/10.6.0/Dockerfile index 4cd3094ed..759f3fe3d 100644 --- a/linux/ecosystem/atlassian/jira/10/10.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/10/10.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.1.1/Dockerfile index dc799629a..ef635d084 100644 --- a/linux/ecosystem/atlassian/jira/4/4.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.1.2/Dockerfile index 1483d6fda..21348be6c 100644 --- a/linux/ecosystem/atlassian/jira/4/4.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.2.1/Dockerfile index ce7f2da07..1b1caf854 100644 --- a/linux/ecosystem/atlassian/jira/4/4.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.2.2/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.2.2/Dockerfile index 423dc08fe..f2ef32a8f 100644 --- a/linux/ecosystem/atlassian/jira/4/4.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.2.3/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.2.3/Dockerfile index e01a26d73..69d68cdd3 100644 --- a/linux/ecosystem/atlassian/jira/4/4.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.2.4/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.2.4/Dockerfile index 0baf8331a..f535c48db 100644 --- a/linux/ecosystem/atlassian/jira/4/4.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.2/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.2/Dockerfile index 7c105c7ec..862c14532 100644 --- a/linux/ecosystem/atlassian/jira/4/4.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.3.1/Dockerfile index a24e7619e..7fd5a143c 100644 --- a/linux/ecosystem/atlassian/jira/4/4.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.3.2/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.3.2/Dockerfile index 57b0162f5..9d71f0261 100644 --- a/linux/ecosystem/atlassian/jira/4/4.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.3.3/Dockerfile index 88c9839b0..833532ba0 100644 --- a/linux/ecosystem/atlassian/jira/4/4.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.3.4/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.3.4/Dockerfile index de58fa39c..229c18037 100644 --- a/linux/ecosystem/atlassian/jira/4/4.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.3/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.3/Dockerfile index 4969610ab..d931c068e 100644 --- a/linux/ecosystem/atlassian/jira/4/4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.4.1/Dockerfile index 8d8d801db..699558660 100644 --- a/linux/ecosystem/atlassian/jira/4/4.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.4.1/Dockerfile @@ -29,7 +29,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.4.3/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.4.3/Dockerfile index 7985db4c8..1814cb541 100644 --- a/linux/ecosystem/atlassian/jira/4/4.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.4.4/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.4.4/Dockerfile index 9ef0da4e3..6f6aa80ad 100644 --- a/linux/ecosystem/atlassian/jira/4/4.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.4.5/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.4.5/Dockerfile index bab1b33d8..08fa03edf 100644 --- a/linux/ecosystem/atlassian/jira/4/4.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/4/4.4/Dockerfile b/linux/ecosystem/atlassian/jira/4/4.4/Dockerfile index 4909d2a4b..1b8844433 100644 --- a/linux/ecosystem/atlassian/jira/4/4.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/4/4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.1/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.1/Dockerfile index 218763357..00a28b37f 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.2/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.2/Dockerfile index bb86741e1..da2113701 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.3/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.3/Dockerfile index ae53c55ca..e4fb4bb32 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.4/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.4/Dockerfile index 97c23b081..7b2298182 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.5/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.5/Dockerfile index 790e75106..d92193d0f 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.6/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.6/Dockerfile index 404fb4a03..e3350895c 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0.7/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0.7/Dockerfile index 14f8277d7..40beb44bc 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.0/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.0/Dockerfile index 7b2e44259..333006660 100644 --- a/linux/ecosystem/atlassian/jira/5/5.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.1/Dockerfile index 7d60018c6..2d08a37b2 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.2/Dockerfile index c46b27b00..5f99afc32 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.3/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.3/Dockerfile index 4306a025d..e75c924c6 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.4/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.4/Dockerfile index a4b606e4b..45287d4db 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.5/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.5/Dockerfile index c65880f2d..b46c1a355 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.6/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.6/Dockerfile index e1a50d5e5..539abaa43 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.7/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.7/Dockerfile index bd40694a3..69c471142 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1.8/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1.8/Dockerfile index 65f377c26..953f16fb3 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.1/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.1/Dockerfile index fb3d8e246..31965a9c5 100644 --- a/linux/ecosystem/atlassian/jira/5/5.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile index 93621fdbe..30e04952b 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile.jdk7 index bb6c4b382..aea6ff55f 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile index 8b3e95241..cced13148 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile.jdk7 index cd989e512..3fa20b1c8 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.10/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile index bd1f8da0a..9da512770 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile.jdk7 index 2d66de834..dec20c9ae 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.11/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile index 2f731fab6..0c509135f 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile.jdk7 index 338bc2dcf..bec094ad3 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile index b30f4a8b7..a42a8bb41 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile.jdk7 index c88cd2f2e..2ac7ac425 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.3/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile index a9fd61e07..5f67dff92 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile.jdk7 index f6f58286a..3b1354e3a 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.4.1/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile index f4bb5ee8a..3dd545086 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile.jdk7 index 2b9ffc920..492edd8a4 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.4/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile index 0ccd582f9..92fac130d 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile.jdk7 index 5d7ae64eb..594b9da16 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.5/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile index d50553f9c..a1fffdf69 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile.jdk7 index 81bb92a27..9dbf3be37 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.6/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile index dd763f8e7..62190c786 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile.jdk7 index b9bdac2d6..ddd532518 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.7/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile index 78a168b34..f1ca43309 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile.jdk7 index 3b83a60b6..97702812e 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.8/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile index 3a16daacb..85a5277b5 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile.jdk7 index 43365d534..6421aefdf 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2.9/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile b/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile index 6413adff6..6d1042814 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile.jdk7 b/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile.jdk7 index adad726c2..70ac6049d 100644 --- a/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile.jdk7 +++ b/linux/ecosystem/atlassian/jira/5/5.2/Dockerfile.jdk7 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.1/Dockerfile index 2562e7d37..f833532a2 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.2/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.2/Dockerfile index 303f90b0a..89899a660 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.3/Dockerfile index 48c46de30..a4281c603 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.4/Dockerfile index 136032536..cc58ce012 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.5/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.5/Dockerfile index 51f0dbbdf..5e1373e1e 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.6/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.6/Dockerfile index c7ee6aa3c..bd59280e1 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.7/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.7/Dockerfile index b8df772d3..d45809365 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0.8/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0.8/Dockerfile index 44cd5e7df..de6b348ec 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.0/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.0/Dockerfile index d2d6cd300..e55162af5 100644 --- a/linux/ecosystem/atlassian/jira/6/6.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.1/Dockerfile index 56c3ffeb5..ec38dbf06 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.2/Dockerfile index 27a1fd263..2cf53fbfd 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.3/Dockerfile index eb532e9f7..d1413ecdb 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.4/Dockerfile index 90b468f6f..591dc3592 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.5/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.5/Dockerfile index 8144d1deb..f4f3c92b3 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.6/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.6/Dockerfile index 929c297a1..be7616ff6 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.7/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.7/Dockerfile index 3f9bba88a..7e0836a2b 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.8/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.8/Dockerfile index 57ff3fe23..6039fad72 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1.9/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1.9/Dockerfile index 4ae1c561f..d243a6295 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.1/Dockerfile index 4e1dcbbc1..625c8ec0d 100644 --- a/linux/ecosystem/atlassian/jira/6/6.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.1/Dockerfile index 309fcb22a..688eb3f92 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.2/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.2/Dockerfile index 1d820be32..f8acde079 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.3/Dockerfile index fa37cf25c..2b5d55cde 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.4/Dockerfile index 4380cdad0..a9a8a6216 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.5/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.5/Dockerfile index 8f5e376a7..68808319a 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.6/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.6/Dockerfile index 9963276f2..ad51de78f 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2.7/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2.7/Dockerfile index 00306be7f..f43fd5d2b 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.2/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.2/Dockerfile index 1c2e42fd0..09a657ce5 100644 --- a/linux/ecosystem/atlassian/jira/6/6.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile index ad88fb5dc..f7a89a9c9 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile.jdk8 index 0f06e07dc..5476ac7b5 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.1/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile index 46c118c6a..c0a2f759e 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile.jdk8 index 273b331d4..77571d00e 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.10/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile index 3fdf98a07..502a975c7 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile.jdk8 index ce6e9f9e6..08a813344 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.11/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile index df629ab59..d0f5d6dd2 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile.jdk8 index 8f9617491..44c857fd2 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.12/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile index 0a7174cdc..918309392 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile.jdk8 index d72102cf9..d6a874675 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.13/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile index 766021500..018ca570d 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile.jdk8 index 05e1882b7..543b1f6ba 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.14/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile index 6fb46367c..7c09c670b 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile.jdk8 index 1e71a3afa..3a1766d47 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.15/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile index 64fcfbceb..9ab5c707a 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile.jdk8 index 12b486aca..479863288 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.3/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile index 126ccd832..2fdee1c4d 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile.jdk8 index 31e7c8df6..a161e0787 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.4/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile index f85596b41..df8e1a590 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile.jdk8 index 7a22eab07..8d3ac0d9c 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.5/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile index 0a576644e..7b105232e 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile.jdk8 index 97bd5751b..4b9551338 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.6/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile index d89394a63..543b11dca 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile.jdk8 index b4765cd7c..1d38658b2 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.7/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile index 5606bcd08..7fc74ccf5 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile.jdk8 index 88f0427d4..739d23cd7 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.8/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile index 20b00308d..5b5fac5aa 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile.jdk8 index cc1272ce3..4cec65e7a 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3.9/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile index 93087a1ab..7e277fa8c 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile.jdk8 index d8f0365c8..51e3c0109 100644 --- a/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.3/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile index 9815cd807..76c3d19ec 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile.jdk8 index 03461e98e..5915cac16 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.1/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile index a556d893e..88926e582 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile.jdk8 index e6992fca2..fa20d8899 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.10/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile index 30f7ce104..7ee67b6fc 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile.jdk8 index 9f8504896..921714b88 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.11/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile index 146f78f2e..dcff17a38 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile.jdk8 index 35793fe8f..e0f56caab 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.12/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile index da201ee07..8687aa86a 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile.jdk8 index 7943dc261..bebac6ad5 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.13/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile index bc832085c..97ef8d687 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile.jdk8 index ee852dc79..2a52774c1 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.14/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile index 161a483a1..bf31bad35 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile.jdk8 index 936489552..d2ec41e80 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.2/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile index 54bed0c59..c705f8114 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile.jdk8 index 4f1d4cd28..86c22b63a 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.3/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile index 4a31a7093..50747ecf7 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile.jdk8 index f5a46c8bf..0f16f0941 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.4/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile index fd33228d1..c3571869c 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile.jdk8 index 27bd9749c..a6c0841fe 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.5/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile index bf67ea01c..9f63d39d6 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile.jdk8 index f969254ff..e8168aa03 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.6/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile index addc700d6..1a90ec61d 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile.jdk8 index c9f59f6dc..4084a5e56 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.7/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile index e69e5caf1..8136af76e 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile.jdk8 index bccbc89f6..615372216 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.8/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile index 1f9eb3892..4b8828ead 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile.jdk8 index 7ade446ea..eebaf44b9 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4.9/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile b/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile index 587ac46d3..33f0592a3 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile.jdk8 b/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile.jdk8 index 81379aa5e..b2557bc1b 100644 --- a/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile.jdk8 +++ b/linux/ecosystem/atlassian/jira/6/6.4/Dockerfile.jdk8 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.0/Dockerfile index f27f660c2..a8fa5bd99 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.0/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.10/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.10/Dockerfile index 301dc5f5d..96fc6c653 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.10/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.11/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.11/Dockerfile index e4d313367..6a95d3313 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.2/Dockerfile index 484e43775..f7d318c1c 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.2/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.4/Dockerfile index 245cb455f..673d9b96c 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.4/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.5/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.5/Dockerfile index fdbc74909..a9d79deee 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.5/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.0.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.0.9/Dockerfile index 20a373f92..82d139c00 100644 --- a/linux/ecosystem/atlassian/jira/7/7.0.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.0.9/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.0/Dockerfile index 43a0ba638..2391786bb 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.0/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.1/Dockerfile index 182c80c7d..50cf584fc 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.1/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.10/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.10/Dockerfile index c0f507250..37c7e2224 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.2/Dockerfile index 814148989..993e04979 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.2/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.4/Dockerfile index 4343560aa..48c520c6d 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.4/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.6/Dockerfile index 3279afb8b..16a8e8bd6 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.6/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.7/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.7/Dockerfile index f49b717a6..de25db381 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.7/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.8/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.8/Dockerfile index ae04e37ac..95cc7a812 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.8/Dockerfile @@ -27,7 +27,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf /tmp/atlassian-jira-software-${RELEASE}-jira-${RELEASE}.tar.gz --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.1.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.1.9/Dockerfile index 00d698772..684f96419 100644 --- a/linux/ecosystem/atlassian/jira/7/7.1.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.1.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.10.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.10.0/Dockerfile index 12969c5f9..4877ea761 100644 --- a/linux/ecosystem/atlassian/jira/7/7.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.10.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.10.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.10.1/Dockerfile index 68a74ad71..80aa95a01 100644 --- a/linux/ecosystem/atlassian/jira/7/7.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.10.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.10.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.10.2/Dockerfile index 0e17452eb..19f854276 100644 --- a/linux/ecosystem/atlassian/jira/7/7.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.10.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.11.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.11.0/Dockerfile index 87a2e1efb..25ab12c9d 100644 --- a/linux/ecosystem/atlassian/jira/7/7.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.11.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.11.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.11.1/Dockerfile index b786dbbca..ff5ef33a0 100644 --- a/linux/ecosystem/atlassian/jira/7/7.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.11.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.11.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.11.2/Dockerfile index 18245ad19..6d8cbb655 100644 --- a/linux/ecosystem/atlassian/jira/7/7.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.11.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.12.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.12.0/Dockerfile index 83a6ef3a7..5924f2001 100644 --- a/linux/ecosystem/atlassian/jira/7/7.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.12.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.12.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.12.1/Dockerfile index 0e7e1202d..6a4c4398d 100644 --- a/linux/ecosystem/atlassian/jira/7/7.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.12.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.12.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.12.3/Dockerfile index 238c4d801..9cda0f4ac 100644 --- a/linux/ecosystem/atlassian/jira/7/7.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.12.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.0/Dockerfile index ed4f6f611..4571cb480 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.1/Dockerfile index 0f1012481..fbab4138e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.11/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.11/Dockerfile index 548dde786..5fced6d1b 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.12/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.12/Dockerfile index 9c1e411e2..8477b8e4d 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.13/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.13/Dockerfile index deb5605fb..03781550b 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.14/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.14/Dockerfile index 1a6d54386..c27a54388 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.15/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.15/Dockerfile index 3518ecc7e..562ec6398 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.16/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.16/Dockerfile index 573344e71..355ba6311 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.17/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.17/Dockerfile index ef5e6bbb6..296f74b3e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.18/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.18/Dockerfile index d183d6e60..ee9a9213f 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.18/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.18/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.2/Dockerfile index 20c16e2b8..b9b27773a 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.3/Dockerfile index f27c35936..8a2467b32 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.4/Dockerfile index bca1c25e4..8bbf2988e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.5/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.5/Dockerfile index 30af46003..44e29f07f 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.6/Dockerfile index e750f6b52..e02e56d7e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.8/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.8/Dockerfile index 14618799d..b53490690 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.13.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.13.9/Dockerfile index 11028b88c..579d4f163 100644 --- a/linux/ecosystem/atlassian/jira/7/7.13.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.13.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.0/Dockerfile index 68b7aef2b..f5d205916 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.1/Dockerfile index c0e814882..1cf8d0509 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.10/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.10/Dockerfile index b41070a68..5a8b30ffc 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.11/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.11/Dockerfile index efc2fde56..4d6c7d9c3 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.12/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.12/Dockerfile index 9c0e1c2fa..7b80e9177 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.13/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.13/Dockerfile index 89f1742a1..2b7caca97 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.14/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.14/Dockerfile index 68c8358a6..a5f7803c0 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.15/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.15/Dockerfile index fe14d6724..3c7c85366 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.2/Dockerfile index d4f236e73..ca952d2c3 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.3/Dockerfile index c660725da..1bfda79b6 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.4/Dockerfile index e69c5181e..c262eed56 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.6/Dockerfile index c14e0754a..12ce3f105 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.7/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.7/Dockerfile index daa217383..fb0b7ee87 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.8/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.8/Dockerfile index 5f8f514de..572c51dc9 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.2.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.2.9/Dockerfile index 68815dd12..3491ec491 100644 --- a/linux/ecosystem/atlassian/jira/7/7.2.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.2.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.0/Dockerfile index 73b673512..d5b89b738 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.1/Dockerfile index 52c9b4190..87a536784 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.2/Dockerfile index 2c17053b1..1d0006f86 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.3/Dockerfile index 104ff2fce..16d000cbd 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.4/Dockerfile index e0384dcc6..1eca97da3 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.5/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.5/Dockerfile index 1c9bedb46..075b95b7b 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.6/Dockerfile index 750eccb3a..3bafc57f9 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.7/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.7/Dockerfile index e39114638..8a5600185 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.8/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.8/Dockerfile index 4fd648c66..699a5d728 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.3.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.3.9/Dockerfile index 533d7da1d..cc2c9dec2 100644 --- a/linux/ecosystem/atlassian/jira/7/7.3.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.3.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.0/Dockerfile index 16f76da85..2cf8b4721 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.1/Dockerfile index 08329f34c..090d08345 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.2/Dockerfile index 7991b08d4..2173f1f97 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.3/Dockerfile index a16f63b91..d0caa2426 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.4/Dockerfile index 69249e1e0..c642d75b1 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.5/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.5/Dockerfile index 269bbd759..af57d60e6 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.4.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.4.6/Dockerfile index f8dabcd62..8fcb10773 100644 --- a/linux/ecosystem/atlassian/jira/7/7.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.5.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.5.0/Dockerfile index f351e8184..56e00d604 100644 --- a/linux/ecosystem/atlassian/jira/7/7.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.5.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.5.1/Dockerfile index 176ae4199..d4736fe72 100644 --- a/linux/ecosystem/atlassian/jira/7/7.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.5.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.5.2/Dockerfile index a8e2ee560..66dc68a64 100644 --- a/linux/ecosystem/atlassian/jira/7/7.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.5.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.5.3/Dockerfile index 1ee635de0..1c8d34656 100644 --- a/linux/ecosystem/atlassian/jira/7/7.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.5.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.5.4/Dockerfile index 0c91441ef..fb37ebc10 100644 --- a/linux/ecosystem/atlassian/jira/7/7.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.0/Dockerfile index 7ad01e155..0ad591efa 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.1/Dockerfile index d29527b46..700ecc000 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.10/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.10/Dockerfile index 82c9649bf..d5e21d058 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.11/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.11/Dockerfile index 96a794ce2..2bc7feb96 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.12/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.12/Dockerfile index 194a15e90..e342a232b 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.13/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.13/Dockerfile index d8843ff1c..ade421f69 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.14/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.14/Dockerfile index 6967fd36e..733109e1c 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.15/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.15/Dockerfile index 73d17d721..22ae5d64e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.16/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.16/Dockerfile index 544d1dff4..fe0cd237e 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.17/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.17/Dockerfile index 629129e75..1f5bf8cb1 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.2/Dockerfile index 464b51482..17aa1925b 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.3/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.3/Dockerfile index dc8b1d6cb..974d2b3cc 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.4/Dockerfile index e72fa6e7b..760cbe943 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.6/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.6/Dockerfile index 0f9a49bd6..c854d6893 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.7/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.7/Dockerfile index e7f1d1b5a..64db053c7 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.8/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.8/Dockerfile index d21dfa4f1..364917034 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.6.9/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.6.9/Dockerfile index 9f8dbce0a..bcae690a0 100644 --- a/linux/ecosystem/atlassian/jira/7/7.6.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.6.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.7.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.7.0/Dockerfile index fb9165914..491b3f323 100644 --- a/linux/ecosystem/atlassian/jira/7/7.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.7.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.7.1/Dockerfile index 2fdd265e1..2522d19bd 100644 --- a/linux/ecosystem/atlassian/jira/7/7.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.7.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.7.2/Dockerfile index 873030f13..911be1194 100644 --- a/linux/ecosystem/atlassian/jira/7/7.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.7.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.7.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.7.4/Dockerfile index 495859488..8d091237a 100644 --- a/linux/ecosystem/atlassian/jira/7/7.7.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.7.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.8.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.8.0/Dockerfile index d856cc6a9..5ef1f8bb0 100644 --- a/linux/ecosystem/atlassian/jira/7/7.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.8.1/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.8.1/Dockerfile index b876f3e8f..ac4c2128c 100644 --- a/linux/ecosystem/atlassian/jira/7/7.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.8.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.8.2/Dockerfile index 0f5593c4f..a59660056 100644 --- a/linux/ecosystem/atlassian/jira/7/7.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.8.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.8.4/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.8.4/Dockerfile index 3c03afb56..15e03e8d6 100644 --- a/linux/ecosystem/atlassian/jira/7/7.8.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.8.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.9.0/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.9.0/Dockerfile index e8ac83f03..94a14da43 100644 --- a/linux/ecosystem/atlassian/jira/7/7.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/7/7.9.2/Dockerfile b/linux/ecosystem/atlassian/jira/7/7.9.2/Dockerfile index 6f0f9fe14..1543585d6 100644 --- a/linux/ecosystem/atlassian/jira/7/7.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/7/7.9.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.0.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.0.0/Dockerfile index 4967ebc03..b603134bf 100644 --- a/linux/ecosystem/atlassian/jira/8/8.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.0.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.0.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.0.2/Dockerfile index 832d1f681..01acf428d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.0.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.0.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.0.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.0.3/Dockerfile index af955c428..642e59f70 100644 --- a/linux/ecosystem/atlassian/jira/8/8.0.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.0.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.1.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.1.0/Dockerfile index 6146f573b..a2a9b533b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.1.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.1.1/Dockerfile index e27c63019..e1daebae1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.1.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.1.2/Dockerfile index 5eceeb31d..1ac575c7a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.1.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.1.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.1.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.1.3/Dockerfile index 89d04613d..284ca7677 100644 --- a/linux/ecosystem/atlassian/jira/8/8.1.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.1.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile index aed33b478..5166337d2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile.jdk11 index 9d5e61b42..fb1bd4859 100644 --- a/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.10.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile index 95f1bfbcc..d90533862 100644 --- a/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile.jdk11 index 0acdbdb7e..e51e47834 100644 --- a/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.10.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile index 3256f33e4..1a348506e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile.jdk11 index b8531689f..b57e1e7e0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.11.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile index e2ef83aa0..ea9f4ad95 100644 --- a/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile.jdk11 index bf4168480..67891c2c3 100644 --- a/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.11.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile index 0d18f4844..ab9d6bd1e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile.jdk11 index 2ed1064a7..975342d6c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.12.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile index c0d1e7c04..cd92e4c3c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile.jdk11 index 6689f01d4..0b4b48daa 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.12.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile index 9777fbc9c..7bb9788e4 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile.jdk11 index c7b365c3b..8999d5bba 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.12.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile index 985440792..9181b4dd0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile.jdk11 index 9effc9509..1ec211ec1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.12.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile index 408e4e1f6..18cba05c7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile.jdk11 index 652e4563e..55cc222d9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile index db3360b90..94c9a2df5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile.jdk11 index 701a221be..d0467648d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile index 4947a1b66..d74ca8963 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile.jdk11 index cb017c743..4455b9994 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile index c6e6cacad..aa0e97226 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile.jdk11 index 309009357..31ceca2b7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile index 654c2c9dc..1c5b97a4d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile.jdk11 index ed3736e59..d8cbe61b9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile index 6c3d4748b..f7f504551 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile.jdk11 index 37e9e1a8a..afaaacfb8 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.13/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile index 80d7d452f..24f4b5c79 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile.jdk11 index 4e6aaa65c..345516fe1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.14/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile index 0e73d7f90..b206f1a8e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile.jdk11 index 985ef8be3..12bca44ec 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.15/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile index ed144e63c..42b6e5434 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile.jdk11 index e017b29d3..1cc4098ea 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.16/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile index c942df306..904e92752 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile.jdk11 index 5eafbc2de..ea31d63df 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.17/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile index 80672ce0e..08d1a1cdd 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile.jdk11 index f4b625981..8afb907b9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.18/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile index 0b1a39509..86a170a08 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile.jdk11 index 540996594..1909a6b0b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.19/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile index e7d6b87bb..9df431a50 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile.jdk11 index 654632e72..bcf79496d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile index 076154a1f..221d3e5e0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile.jdk11 index bab57db9f..e4d7d58a6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.20/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile index f735837ef..e93af66dc 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile.jdk11 index 8872a5092..c6641991f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.21/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile index dc82be9ce..e37fb7dcb 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile.jdk11 index 68013afbd..eb8484325 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.22/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile index 3024fdff3..a055323ce 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile.jdk11 index e7de5f4ac..fc498ecf0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.24/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile index 8c5426cdf..b5d001c16 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile.jdk11 index baab0a725..113629f92 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.25/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile index 1a5d143f1..1d1b1b6e6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile.jdk11 index abf8f3946..b1ce40b66 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.26/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile index 8e39594f2..ac990494c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile.jdk11 index 0626f4ca3..7ad7f5519 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.27/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile index 896da244a..9e39d5716 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile.jdk11 index bdc9de550..12303170b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile index 2fff73faf..9dd101d0e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile.jdk11 index bc5bbfe8b..ee0d32165 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile index 1b372fec1..04f29a0e6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile.jdk11 index 64fe9e22b..c0e6faae5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile index d51fa6d59..5a98947e5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile.jdk11 index 8213debe6..8ccb7aea1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile index df4dbcfd1..f324fdb93 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile.jdk11 index 6ed99802c..504e4d5d2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile index 7c73d09b3..96dcec3d7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile.jdk11 index 47c79a3f6..640dc7195 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile index 2308cdabb..bb3bd562c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile.jdk11 index 611212376..bc57f1dc2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.13.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile index 319c116c4..3f1de669a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile.jdk11 index 722adfce4..7fb3e5ac5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.14.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile index 087d70212..a7498fe98 100644 --- a/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile.jdk11 index 170edcdc7..52eac72c7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.14.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile index 84b5615be..6ab1e277d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile.jdk11 index 92002c062..f75617e35 100644 --- a/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.15.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile index 1a228b8dc..82fad131f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile.jdk11 index e77ae29dc..f0c6e4401 100644 --- a/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.15.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile index 256d8fa33..043d1f123 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile.jdk11 index d8a1805f7..f4f8325e1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.16.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile index 4b4e9e531..8850465b2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile.jdk11 index 43a3bb961..cc82530f0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.16.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile index cf99fe8cc..d43cf7312 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile.jdk11 index 75bd5a18d..ff99e7ebb 100644 --- a/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.16.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile index 32a4c84b6..c5f8bec18 100644 --- a/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile.jdk11 index 96344f681..60c2c2e71 100644 --- a/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.17.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile index ad2def014..e31fdcc92 100644 --- a/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile.jdk11 index 8eaf943b5..75bc592ec 100644 --- a/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.17.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile index 514c30e77..50379aa44 100644 --- a/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile.jdk11 index 37a3a2911..afa59ca65 100644 --- a/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.18.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile index 2da46a12d..094a10e16 100644 --- a/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile.jdk11 index fd243dd37..a7c0bea16 100644 --- a/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.18.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile index d47fcf13c..e806c6296 100644 --- a/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile.jdk11 index afddab922..43c90c4e8 100644 --- a/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.19.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile index 06804216b..62eb621ba 100644 --- a/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile.jdk11 index 852aafae4..6edb8e543 100644 --- a/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.19.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile index 213cbd0ea..d87df0f4a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile.jdk11 index ee3750e16..9c1645cb2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile index 33fe06906..7f8572dcf 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile.jdk11 index 191e9f9b9..4508cb367 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile index e8af3e8de..0ea912a9f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile.jdk11 index 9c1e97fd6..9aa70e91d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile index bf2f4a006..2a2f5ed42 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile.jdk11 index ccfd7b548..f8adb1165 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile index 78fe0836a..3dd41c91d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile.jdk11 index 8763cb692..d751ef488 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile index c321277a9..ec07a24cf 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile.jdk11 index 445685526..f14dd041a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile index f1f891fc4..28b0dae08 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile.jdk11 index 4c2c8834b..9375cc612 100644 --- a/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.2.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile index 8b1250fda..7c8bc4727 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile.jdk11 index 86969ddd9..4a3b7286d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile index 83471410f..28b98e370 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile.jdk11 index 3fe0d5613..3d2882729 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile index 623a10c66..b39f28f9b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile.jdk11 index e247fdc90..c3e73c660 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile index e6e2f7446..959619079 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile.jdk11 index 084a65d18..1f37558e4 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile index f0f7f45e0..0a67c5581 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile.jdk11 index 074056748..fbffe3a6f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile index cca55d162..6ffbdf061 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile.jdk11 index 6c3e60c7d..339d262dc 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.13/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile index 3445bda9b..ef4daac45 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile.jdk11 index 145315b86..fecec5c13 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.14/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile index 0ccd2e007..1253f2872 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile.jdk11 index a920d5b62..3986c8296 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.15/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile index 8312ac907..6556af359 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile.jdk11 index 2749471c7..77dc7cc06 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.16/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile index 85ad61552..24d02f5fc 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile.jdk11 index 65c402a6b..d63c84370 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.17/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile index b8e619ef3..451c11bf2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile.jdk11 index 78f3a8fc8..413cd94a5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.19/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile index 28eccd662..9f499aac5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile.jdk11 index 7172a5ae3..f35f08e3f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile index b73ffd42b..00d0f3daa 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile.jdk11 index 0b5c2eba1..e1e69f132 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.20/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile index d770e01d6..38c1501f5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile.jdk11 index fdc4c4ace..47a8a676e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.21/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile index dc3dae54d..05501b008 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile.jdk11 index e128f1489..e5c3570f6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.22/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile index cd6613025..59026a42c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile.jdk11 index f4faa1fe0..9c0a6d94b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.23/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile index cb298b127..56220a66e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile.jdk11 index 046f79ef6..44cc4cd70 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.24/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile index 556423dea..7c91d7d99 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile.jdk11 index b232c8603..a24ffda6f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.25/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile index 0128565b7..6d22bf617 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile.jdk11 index 96a9f9d39..273756c14 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.26/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile index a6da8ddd7..bc06b40c0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile.jdk11 index 915e821da..ec8013bd9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.27/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile index 6a8769563..a24b008d2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile.jdk11 index efb9e26b3..fe0a204fb 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.28/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile index af3d1759e..2c28d215a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile.jdk11 index 3683478eb..66aaf7024 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.29/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile index 5cdc82484..cf063d3be 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile.jdk11 index db18578d4..4a83736db 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile index a93985c4c..95b2f3567 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile.jdk11 index 51202fd54..8c5cd0a6a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.30/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile index fbb0c1563..344739c6d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile.jdk11 index 4c3cdde26..6c3bac940 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile index 9e10bea76..1168ac1a0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile.jdk11 index 36c246325..c5a62f5fa 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile index ea249b467..08c8bda90 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile.jdk11 index 9fcf511bf..8cfeeb6b9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile index c0a16aa6c..6c232d384 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile.jdk11 index cc74de821..5de07b2bf 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile index dad700ba7..3e5098796 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile.jdk11 index 7037fcbf9..ec84e5f39 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile index 2e5fd3cf3..e1a6e7ca1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile.jdk11 index 208840910..1a2bd6129 100644 --- a/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.20.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile index 47e851618..677e65e21 100644 --- a/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile.jdk11 index bbfaf83e9..60ef2d045 100644 --- a/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.21.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile index d8713cd65..8d6868753 100644 --- a/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile.jdk11 index 0c5038c04..42bcd7eb5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.21.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile index cf0a0eb60..28fb870c5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile.jdk11 index 954922796..e28fe03d8 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile index 883a33926..fad9fd190 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile.jdk11 index 9d505853d..28314d495 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile index ed7e63dcd..225b56c25 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile.jdk11 index c384266f8..13845d080 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile index f7291c3d4..6561347db 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile.jdk11 index 1392b2e46..ea414cc2a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile index c5eaddc86..0ff12f602 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile.jdk11 index c9485d144..c1576fc71 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile index e5e59ce13..a31e6e71c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile.jdk11 index 3bad003cb..f660ba600 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile index 8eef049e6..bce65e095 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile.jdk11 index 6d12f7b22..7739a462d 100644 --- a/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.22.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile index 3f66b5058..d0ed6f588 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile.jdk11 index 6defbdd75..2a813a248 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile index 5e1e624e8..1e363b373 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile.jdk11 index df137f13f..95a5ce177 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile index 685996d6f..01af0d67f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile.jdk11 index 71455c0b2..b57b9f41f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile index 6e86b1aa2..1b30c6ee8 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile.jdk11 index 3c0a584e8..f03dc44d0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile index d6c4665a9..ffb0002f5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile.jdk11 index 66d98cd9b..22d6598f4 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile index 14a3860cf..0cd6ff6bf 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile.jdk11 index 871ae29fe..b59648c97 100644 --- a/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.3.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile index 63bc1658b..b8011401a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile.jdk11 index 1a59fffcd..e80d50d87 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.4.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile index 02f549acd..91059c699 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile.jdk11 index 14af613f8..86973b805 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.4.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile index 428e9f8c1..5a11f5595 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile.jdk11 index ea8de9828..29b863ee7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.4.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile index 2a925e54d..2b61a3d6b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile.jdk11 index f8067fc2f..49ea276c9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.4.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile index 6f55bf7cb..2cdf15e3b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile.jdk11 index 83e3bbfef..c982c85d8 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile index a1eafc6df..be7c08d26 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile.jdk11 index 4cc0d973a..4aa1dc715 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile index 8daac5972..d41ab7805 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile.jdk11 index 7dc1c426b..8e8fe3cee 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile index 312ca3a38..44d67c8d7 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile.jdk11 index d4ad89264..0d190e3af 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile index bc6be1272..efcf8c9e9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile.jdk11 index 68dd1ec06..0ab14d617 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile index 0c934eb95..50107541e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile.jdk11 index c4456cdd5..4141e7cbb 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.13/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile index 4754a5def..0eb96a071 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile.jdk11 index 2fd02ffe0..642021df9 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.14/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile index 4d06fb618..e6ca0c318 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile.jdk11 index f1ac6d3dc..ad00147d5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.15/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile index f7aef21a9..3e746af31 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile.jdk11 index 4e850270b..794d51354 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.16/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile index 09dafb803..14306c1cd 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile.jdk11 index 5ac7b876b..094d54661 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.17/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile index f299a42a3..193b8b966 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile.jdk11 index 4793dd0a9..93820d18a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.18/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile index b8b939ae6..b9a44222a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile.jdk11 index 2fb103c7b..c03ec73cd 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.19/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile index dc77b49df..3c9929fdb 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile.jdk11 index 2898f14ba..515795d9c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile index 7277d313c..c6ccd5be0 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile.jdk11 index a8c9da6ce..16ab0e283 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile index 3c37e9c13..e6339985c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile.jdk11 index 9729360d5..7ad4fba5b 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile index 5d7c8f9f4..ea9043d17 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile.jdk11 index 0c5e4282a..7fb64ea13 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile index c3f1a2364..5ad2eb3f1 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile.jdk11 index 4bbb227eb..46035b413 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile index 704801f21..ca3d7932c 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile.jdk11 index 7a36dc709..fcad4c279 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile index 0b1f010da..d74432703 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile.jdk11 index 693bd2d16..d42bb2c03 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile index 30e277641..d3d773b64 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile.jdk11 index b00e507ef..a5ca71e3e 100644 --- a/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.5.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile index d1e46dea4..b81bbcfb6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile.jdk11 index e3b9ed585..dea5e4b31 100644 --- a/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.6.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile index bef1634a1..0ed777979 100644 --- a/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile.jdk11 index 8fa84ae7b..673feee92 100644 --- a/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.6.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile index 7e2018b45..4e1a36e36 100644 --- a/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile.jdk11 index ac4dd5ca9..67e3609a6 100644 --- a/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.7.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile index 5cbaec68a..1b7434407 100644 --- a/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile.jdk11 index cae14ea76..2cf1aaafa 100644 --- a/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.7.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile index ccd4f8d7f..207c122f5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile.jdk11 index 58e63b7ba..ca98988d2 100644 --- a/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.8.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile index 465682a6c..a5d5b537f 100644 --- a/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile.jdk11 index 3d8dbbc04..15acb1f19 100644 --- a/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.8.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile index 53f97ab92..262607292 100644 --- a/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile.jdk11 index 714de2e8b..827f4b1a5 100644 --- a/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.9.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile b/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile index 046fed24d..5a970137a 100644 --- a/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile.jdk11 index cc3229605..79b5d45ad 100644 --- a/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/8/8.9.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile index 7e7785523..d945968f8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile.jdk11 index 4c8163649..acac4b620 100644 --- a/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.0.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile index e0de6ef21..b6271a416 100644 --- a/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile.jdk11 index b529a3544..0f670117e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.1.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile index 2b6caec03..747da06cd 100644 --- a/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile.jdk11 index 297257068..c13c20c19 100644 --- a/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.1.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile index 3cdb6199a..5c9466a75 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk11 index 47c3be8da..a8a86d0df 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk17 index 00d0a0515..e1bb59a68 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.10.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile index c44cada63..8d4fb4697 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk11 index 432e7eb9b..8d9f91d11 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk17 index 38a240c02..8429c9f20 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.10.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile index b5f99841f..05d8b3f12 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk11 index f7aee36b0..7708daafd 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk17 index 36e1ec92f..b3cb73c50 100644 --- a/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.10.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile index 53fb88e24..e073a420c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk11 index 3dce618c1..bc221d4a3 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk17 index 68415211f..9f51cfd57 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.11.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile index 891794f35..2a3a0ffe5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk11 index 857bfb114..9e377d261 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk17 index 74553ce99..0a444f814 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.11.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile index 8a512e45f..51432e731 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk11 index 7e8e18801..04d17105d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk17 index c7661e9f0..180daf522 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.11.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile index ee18e22a3..c474ae569 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk11 index 788ea4bf4..7ef29c54f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk17 index 11eade990..20d0df44c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.11.3/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile index 6241951b2..0da2f14a1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk11 index a3ea53476..4f7d4c8de 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk17 index 1885f41b8..3db04554f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile index e8fdee0bb..60cc04e72 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk11 index 33a4b435a..06de36e63 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk17 index 8000b7a80..d84016722 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile index 8b02060ca..ae1651519 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk11 index 355af702f..2b08d19c5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk17 index 9c047cfac..87b2c62ef 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.10/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile index 6b9c8cd3f..5435f90c2 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk11 index a7f0a1fd2..404f3fe64 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk17 index c28adea73..a827b404e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.11/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile index f9da2e42b..507efa471 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk11 index fc2ca9d61..960ba1f6b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk17 index f78be3b51..7f3d872b9 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.12/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile index 6a9f7834a..dcc150dec 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk11 index b695a062f..37354c6e7 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk17 index da6080b9c..e6766e564 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.13/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile index 83d3b0cf1..c7cdeecb6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk11 index d54f7b1ce..5f54addc9 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk17 index 38d287f47..43c595928 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.14/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile index f1577a32b..1629b6c5f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk11 index 2652c6121..13537d7be 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk17 index da0ad866e..f3c229d4f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.15/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile index da24a0aae..05818213b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk11 index f5e7e52f1..ba024cdbc 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk17 index 1fb9346b5..82798799e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.16/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile index d706a87ea..b62b7234b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk11 index bcf6b45dd..39244547f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk17 index 409a8a933..149bdedc1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.17/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile index 12b41ed9b..3733a7ae1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk11 index 3d97728dc..d131cf01d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk17 index 1c57cafa6..f2a4ad020 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.18/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile index d070ff5d4..281e44999 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk11 index 14ca0ffeb..8a8906a80 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk17 index 5b70cd2bd..a6d84ae5f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.19/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile index d2941c122..5d89160b8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk11 index 13f743c32..3fc178c16 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk17 index 815b1ec09..39226f429 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile index fd8bec712..b66f7ee58 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk11 index 3df8cf9bf..e2da0c53f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk17 index 39acb1479..b7ab4980a 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.20/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile index e278390cd..71d693481 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk11 index 8d9c42951..f46aac112 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk17 index fbcc4fccc..249fa5bea 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.21/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile index 6bbe172b9..80ef4d65a 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk11 index 061ff034e..80149bdaa 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk17 index 95dc36dca..6d602ca0d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.22/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile index 91b3aa0b9..417162710 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk11 index 7dbeefa93..a001de370 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk17 index c4802760d..15841afd1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.3/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile index 196ad08e1..85150fca3 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk11 index 57b3fed55..5ed1fb4fa 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk17 index 4c01f4b4b..f8d0beecc 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.4/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile index 2e8f57fe2..83aebc3b8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk11 index 638867676..555e91f98 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk17 index 438a6efe2..105c9ed76 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.5/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile index 1dd664763..25b3dfdbe 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk11 index 977c82481..9c0f989c3 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk17 index b313fa896..1c0caf1fe 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.6/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile index c37349bd5..9f4374efe 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk11 index dd525af53..d962f821f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk17 index 70240ece5..c096556f6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.7/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile index 2f606a099..982577b6d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk11 index 89a6a4b55..de5e90785 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk17 index 9e4adcac1..e7740af4e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.8/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile index 3e59024ce..639093fb8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk11 index c25773312..2ef4f0d93 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk17 index baf3e6b65..a964c7719 100644 --- a/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.12.9/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile index 27e22e8d2..d4064b133 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk11 index 6aa75de16..1ad74a8d6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk17 index 494f8a393..938dc88a4 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.13.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile index 412cb5ac3..463e600f4 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk11 index 3641f5a63..fd42decb2 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk17 index da0899098..da04a5fd6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.13.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile index d0f309388..3234ac9b1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk11 index c41ab3c99..1446f61a1 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk17 index df13b123a..614e6f75c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.14.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile index cc841d20c..4ec6359cb 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk11 index 30fd5d72a..9d312ad71 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk17 index 5748979dd..f94744e14 100644 --- a/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.14.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile index 5d3f24bd5..86c3019ac 100644 --- a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk11 index 69bc7860c..0732d1e4d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk17 index 6e4c63605..544d92882 100644 --- a/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.15.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile index 248054f79..64f16c4f9 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk11 index fd18bfd8f..d57d65a49 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk17 index 16aafc04e..2cb0b565f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.16.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile index 40f8541a7..ffb9113cc 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk11 index e482f9822..726c73502 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk17 index 036cf474d..5d177ece2 100644 --- a/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.16.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile index 280684c0a..a094a394e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk11 index 743aa991a..614dd6076 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk17 index 08b48644e..1545efa5b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile index d7de14bf0..2dab29526 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk11 index 3153c2e40..d89691c77 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk17 index 1b3a1f10c..4b8851672 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile index 2df31543c..8016c1c57 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk11 index 23d247ef7..24341221d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk17 index 7b1961c97..b5875d480 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile index 95cc1e1d1..3e303c4b4 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk11 index 8995e6f26..2f96f8ee0 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk17 index 8f338851e..d57011b16 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.3/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile index d0804d017..c3afb9871 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk11 index a9bb65f42..641017383 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk17 index 104c46429..4fbe21103 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.4/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile index 28d37ad59..62e3cc675 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk11 index f865021c6..bbbe86850 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk17 index ea3f60652..8b56dca2a 100644 --- a/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.17.5/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile index 7c2693250..a829fcaa6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile.jdk11 index 2ec2c40c6..e2f778e6e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.2.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile index 8aac182ea..281e21da5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile.jdk11 index ace46f874..4ce976af2 100644 --- a/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.2.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile index 32c4b561f..c6ad54bc5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile.jdk11 index a6122e5e1..90b3b8c82 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.3.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile index ec0092f75..c3a557d7a 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile.jdk11 index faaf25858..eb529e4ef 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.3.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile index 1f2605213..75a3dacf8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile.jdk11 index b77006f95..858b2114c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.3.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile index 45deec6a9..f81e386ad 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile.jdk11 index e83b14ae9..523753793 100644 --- a/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.3.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile index 2e2eefcc4..2b9604ea0 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile.jdk11 index 375fce0cf..8749e08ab 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile index 6d217f619..b44ce8551 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile.jdk11 index da0fb15da..28e540c10 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile index 49d56380b..09b8d8a0c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile.jdk11 index 17de08fe3..0208b7453 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.10/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile index 01497b0a1..a57491cb5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile.jdk11 index 4ca9b4425..65aaf9e9d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.11/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile index 6fce9086e..0cda6d097 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile.jdk11 index af0fac835..b68647961 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.12/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile index e56a4c632..cdee128c0 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile.jdk11 index 8f0d8d678..1866577ee 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.14/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile index dadb6d666..3f887e1f6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile.jdk11 index 411915a4f..18981f57f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.15/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile index 150c5e8f4..bd48c4247 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile.jdk11 index f55b9d075..2c2248c09 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.16/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile index d63415777..f29873459 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile.jdk11 index 484e8a393..1def38b26 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.17/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile index f9c67faeb..2d28163a6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile.jdk11 index 4b7c88993..e160c06b3 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.18/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile index 5a4e2c32a..8bb3774d2 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile.jdk11 index 2c5655021..dccd0f7e8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.19/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile index 2d42b8c4d..8a79106dc 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile.jdk11 index 09a3ec84f..330d46d81 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile index ffa9a9082..e510f65ce 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile.jdk11 index 465d4cd08..2626a3580 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.20/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile index 22f31e457..b0d9f044e 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile.jdk11 index 42970bae8..a5b70f30f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.21/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile index 131763b48..66ee760b3 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile.jdk11 index 909945365..a1011b6cd 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.22/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile index 10ce934e4..4d102f229 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile.jdk11 index d5590a0c1..ec6b79cfb 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.23/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile index 8402b3a7b..00b8f42cf 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile.jdk11 index e1b307e8e..8baf47de0 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.24/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile index efc3ea86f..f7fd03057 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile.jdk11 index 182adae9d..e956ecb8f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.25/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile index 4b70ec730..6f93f95a7 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile.jdk11 index 329465362..c35d5e404 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.26/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile index 22937621b..142a1cce8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile.jdk11 index cd3242244..822827670 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.27/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile index f5b5337c5..255fcad54 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile.jdk11 index 2e2758621..e99b9b3ae 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.28/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile index 5d22b311d..c62d292f8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile.jdk11 index e47ff6301..ef33fafa6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.29/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile index 32743064d..46db56f2d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile.jdk11 index 893b4eb9b..e542b8e2a 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.3/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile index 4eca80594..4931ab965 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile.jdk11 index 93d174a0e..cf3bbedfc 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.30/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile index 0ad0a38ba..8bf856355 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile.jdk11 index 8b009dc87..e90b12074 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.4/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile index 875a1ba43..b03795345 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile.jdk11 index 647bd780e..16dd690cf 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.5/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile index c2716a7b1..8bcc8bea5 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile.jdk11 index 2b100e50c..42ab9b333 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.6/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile index 79f47535a..3ec076ed4 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile.jdk11 index ff20e71c3..090a7e24c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.7/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile index cd1c0f422..f01419686 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile.jdk11 index f15bfed37..74fae1493 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.8/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile index ee221c1e1..ddd26b66d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile.jdk11 index 00fecdb88..3c6709de0 100644 --- a/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.4.9/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile index d869b5100..275d13d57 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk11 index 80cfa4367..e03703783 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk17 index d9f9d6bf5..9fdf83b7b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.5.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile index b5fed0665..e2ed8510b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk11 index 45594c6bf..fa873e505 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk17 index 8fabfb1b3..ac2a77dda 100644 --- a/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.5.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile index dcf97aa37..fd1c6d98f 100644 --- a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk11 index 41160572e..458bd28d6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk17 index 6512cf72d..41837ed8b 100644 --- a/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.6.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile index 666e2f1b7..13eb02efe 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk11 index d9648a4d8..810a18081 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk17 index 3f28cead9..9e7fc6c7d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.7.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile index df958531f..64641a9a8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk11 index 44e6e6269..8ed64b759 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk17 index 6bf41ab17..0d9e23241 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.7.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile index 6248a633f..3190b6514 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk11 index 8ce0ebd6c..3706066b7 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk17 index 8d55b94e2..2cbbf2e54 100644 --- a/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.7.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile index 5341d5058..f850879e8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk11 index 673f7bbce..c5bd0a4d6 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk17 index 19a6569dd..6a70a65f7 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.8.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile index 59f6667b1..20d47f802 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk11 index f801f1ce8..9e4fdd29d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk17 index a8b3c8d26..78dfca09d 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.8.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile index b66758cf9..6c4b5bf9c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk11 index 26eb5fb9e..51014ed77 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk17 index 0fec1a04e..bd13aaa65 100644 --- a/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.8.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile index 43b51565f..0df65e67c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk11 index df6cb1926..1cebf84c7 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk17 index ccbb4fce3..5498b5fca 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.9.0/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile index 3b6b6881c..9d9c482a8 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk11 index 07049f84b..daf8dbc7c 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk17 index 1329a7a3f..45790df23 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.9.1/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile index 1d1b9fe6a..a2093b767 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile +++ b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk11 b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk11 index 17c67824c..d561a5aee 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk11 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk17 b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk17 index 05f6be604..ac9eb95b9 100644 --- a/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk17 +++ b/linux/ecosystem/atlassian/jira/9/9.9.2/Dockerfile.jdk17 @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/atlassian/jira/latest/Dockerfile b/linux/ecosystem/atlassian/jira/latest/Dockerfile index 81d3e0aa1..da15cd463 100644 --- a/linux/ecosystem/atlassian/jira/latest/Dockerfile +++ b/linux/ecosystem/atlassian/jira/latest/Dockerfile @@ -28,7 +28,20 @@ EXPOSE 8080 ################################################################## # Installing ################################################################## -ADD ${DOWNLOAD_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${DOWNLOAD_URL}") \ + "${DOWNLOAD_URL}" + RUN mkdir -p ${JIRA_INSTALL_DIR} && \ tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \ chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile index cee02dea3..6f48c0b4f 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile.develop index 80718cec5..462be5cbb 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile index b50fc36e9..9b1f6229f 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile.develop index d353bd07f..7a2f5fe50 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile index 79d4e1ca2..f7a2540e3 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile.develop index a21616773..e689b5679 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile index d4af885b3..629490012 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile.develop index 3a3f7de7d..a8d2e97d0 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile index 947165e9b..c989ea9d3 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile.develop index 22f3f5744..b1b980c68 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile index 208bc37d0..f44b4c52a 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile.develop index 3aae4e767..3892ca8df 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile index 50a0e9d5c..d6a56beac 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile.develop index 3aaba8656..9c040eee1 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile index ead37c4ca..6ee59cee0 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile.develop index 65dd7b9ed..88f765c5f 100644 --- a/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/06-squeeze/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile index acbd4d4cb..7fe0dc1a7 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile.develop index e30a73392..db57a696d 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile index 594953b95..aa3556614 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile.develop index 64428dc0a..10d136716 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile index 4d7690318..561f02420 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile.develop index e5a674919..dc5948be0 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile index 226381e61..367141398 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile.develop index 27bc17e22..2699482a5 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile index 7993dbf1a..daa9fdefb 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile.develop index df747fb2d..d3cc7b2ef 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile index c8233e789..5932471d6 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile.develop index 2a29ab12a..b9180b198 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile index db9927f93..f843cf990 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile.develop index 589fffb6b..eba15ece8 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile index 97a749eb9..2eb913b54 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile.develop index 39988cb0e..968b60488 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile index f287f429f..c98a7852b 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile.develop index 12b7f3737..62b96df65 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile index bf53edaa1..97dfa8c59 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile.develop index 051cecc4b..6f7a3eade 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile index be1bb9ca4..2cbdff458 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile.develop index cc5083fc6..d7887c8af 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile index 41a8f7c06..af66e8b76 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile.develop index 98f51493f..03fc29249 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile index aafbc4e07..3412b00e1 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile.develop index f1cd5b759..770e4d7f8 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile index 6ab1268b7..45ccf95c8 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile.develop index 9e86158d7..27e5a6ebc 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile index 6eb91ab2f..e24b03a37 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile.develop index 6a456efdf..1264e9936 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile index 6af8389b6..93f88c4ad 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile.develop index 622150deb..51617cc5f 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile index d02eaf16b..70af961a0 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile.develop index 6439c38a5..7adcc41df 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile index 626aa8815..f63084d29 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile.develop index 556fde10f..93e137bed 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile index e667b6428..e42b6276e 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile.develop index 2c6fc38a2..30077e3d9 100644 --- a/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/08-jessie/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile index 156e57b63..eac693a07 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile.develop index 5cfe690cb..a51c277bb 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile index ef2c38972..237b4b6f5 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile.develop index 4e19f0d46..c9fde5443 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile index f84db5b4a..98580f181 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile.develop index b307cb69c..09f8a7e99 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile index b9ab2a7a1..b22d0fd2d 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile.develop index eff0585e8..443add929 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile index a0d811c9e..08c4ba417 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile.develop index 29ddb0300..6ff804734 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile index 65df38291..322f96e88 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile.develop index 74057e8dc..78a642acd 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile index 8039c54c5..dffc8b9fd 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile.develop index 554e4d62c..ec78a139f 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile index 8081b747e..00901fbe7 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile.develop index b56220e39..e6b9c9ddd 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile index e2bf04cdb..d5098a59b 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile.develop index 6a4931f7f..1ef3aed35 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile index 7d3165f39..689d03a08 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile.develop index 8af0fb5d2..96b0c46d9 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile index 294f4de33..e237caec7 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile.develop index c18c2766f..a64b4bcf8 100644 --- a/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/09-stretch/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile index c55536e4d..293ffb625 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile.develop index 3ba2e2b39..6a0123e42 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile index cfb75e5e3..9a5abf2ae 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile.develop index 128a21e00..b403480fe 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile index 264eb8c5e..e5e4b258c 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile.develop index f209f7bd7..4a394516d 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile index bda7fa79a..62cff50ff 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile.develop index 893d12d36..604e2c158 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile index 3db0b675b..20c8e8e73 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile.develop index 25b839bc4..3cab66870 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile index 71b5f1665..34620e923 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile.develop index 450a7e0f2..7852ec30e 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile index b3ba06dfb..5afd61f75 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile.develop index b3b73dbd4..78856a21a 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile index 80f8d1e6d..4b18b7659 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile.develop index 4675d5fca..967c4e36a 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile index 5b3ac6bd7..dfadc4bd0 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile.develop index 16df83ba1..f2119e7f6 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile index 213e89376..9579f577b 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile.develop index 961f42762..d76d7fca6 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile index e9ead1dbb..6aa1faa89 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile.develop index 43d51521e..a916d87b2 100644 --- a/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/10-buster/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile index 59de83f8e..01b9fc437 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile.develop index 33a769683..5dc37b555 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile index e555e9ce3..633dc19ee 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile.develop index f2144e41f..b48e360c4 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile index 353d10f99..bebec7402 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile.develop index c1c49dded..5efc4f406 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile index e32ef43f5..a92a265b2 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile.develop index 442409af0..ef2b45b85 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile index d8897eb0c..36d014cf3 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile.develop index 262ee6381..eadd531cf 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile index 348e518cb..0ac66981c 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile.develop index 34c80eb77..cec696a9e 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile index 5fe11e9a0..d98a41aae 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile.develop index ca8513ca1..a6c7764b1 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile index 190f133bb..c83b44609 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile.develop index a710dbb57..283549104 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile index b2bd761d7..d1923f4c1 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile.develop index f960175af..5c8dc06db 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk23/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile index 58b9e2848..ba911b379 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile.develop index 2241875f5..39e62890d 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile index 39c905da8..de35ffcdb 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile.develop index 8aa1fdcb9..eab144d1c 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile index cf7341647..2ce4d5d9b 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile.develop index bd11b5904..519614c6e 100644 --- a/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile index 0c183fa83..7c3863b98 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile.develop index ca96be1d0..fa9d095f5 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile index b5ba3861d..2494f5b0c 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile.develop index 56b368774..1eab9c15c 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile index 38a582842..59d34e8bd 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile.develop index 73120835e..be5b106d4 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile index 37446c140..cf16abd6e 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile.develop index 94f13e4d5..10c614b27 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile index 1823f9843..c4ebcca7f 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile.develop index 6211f447b..917fc310b 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile index dd7052476..5833797eb 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile.develop index 6cd9b7894..14013b67f 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile index 94be2c896..9edb63b3f 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile.develop index 73e0ed32a..3db516cc9 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile index 2b59e24d9..725ecc1e6 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile.develop index 8345ed4a8..eaf6a391f 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile index e72c096da..68dfbd3b7 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile.develop index 2c1ee0c94..b1b8663f4 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk23/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile index b77f4c9b6..676805233 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile.develop index b38443c9b..892582f97 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile index bfe70a424..9e5d16070 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile.develop index 43e9576fb..e105d6fec 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile index af2dad824..a7fa0c02b 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile.develop index a7bb060f6..887e871c7 100644 --- a/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/12-bookworm/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile index ae0854335..df38c12d2 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile.develop index 151d725b1..064b4b9a4 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile index 8e071d9d5..2bda20877 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile.develop index b7aca935c..270829753 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile index f5f77e816..5c35e25f4 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile.develop index 12f8521ec..6a4bf5e9c 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile index 5badabdfe..4abf18e02 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile.develop index ba215b297..6789e1318 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile index 835560543..6b0f88821 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile.develop index fbf05a630..ffb3f07fc 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile index 6e318eba7..fb3cb6a2b 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile.develop index a5b1da638..801764c42 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile index 917dcad2e..7a1c4d56c 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile.develop index 2dc55a424..9db866964 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile index 7fc256d09..aef11ba32 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile.develop index c9c01d1d7..f745699eb 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile index 763d721e7..8248af2cf 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile.develop index 83056fdbf..ab730f3a1 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk23/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile index c2788fcf2..1ede2415a 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile.develop index 94176f15e..5d9f0cf02 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile index 9bc6545ed..d4d3aa483 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile.develop index 6b66418bd..80e8fbf57 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile index dae10a7f1..d7ca83202 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile.develop index be45ae892..0904d4f88 100644 --- a/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/13-trixie/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile index b36ff9d57..7a16aaf78 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile.develop index e7f56efcb..71d85c273 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk11/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java11 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile index 781adbe6c..7ad75e4c3 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile.develop index 0f249a36b..54c3d6c45 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk16/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java16 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile index 17aef3302..130b19a68 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile.develop index a8725be9e..8f34077df 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk17/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java17 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile index 2c4cb43c0..f5b6b78ee 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile.develop index 2061f0ae6..7126f55a8 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk18/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java18 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile index e642f2813..fec02cc31 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile.develop index 01a3cd1ed..accd560a4 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk19/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java19 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile index 2a6b16ae9..77d8a3394 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile.develop index cffc7edf5..6e62e2eb7 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk20/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java20 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile index 4ec4926ec..a975544f4 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile.develop index e83eb210b..5ace39771 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk21/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java21 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile index 51cc7c6c4..1ccd6d2fc 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile.develop index 50e37fe67..a5ffdd258 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk22/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java22 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile index f66af3222..1b54ac508 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile.develop index 06996ab1d..3c2e971b3 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk23/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java23 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile index 161f8999d..2ef146c3e 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile.develop index ca0b64a7f..2ac91d235 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk6/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java6 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile index 04eaa1c04..0b32bd682 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile.develop index b5fc24df2..0329cd73e 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk7/Dockerfile.develop @@ -17,7 +17,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java7 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile index 063956b98..af975a74a 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile.develop b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile.develop index 32e9e6592..8a6059c74 100644 --- a/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile.develop +++ b/linux/ecosystem/epicmorg/debian/sid/jdk/jdk8/Dockerfile.develop @@ -18,7 +18,20 @@ ENV PATH=$PATH:${JAVA_HOME}/bin ################################################################## # installing java8 ################################################################## -ADD ${K_JDK_URL} /tmp +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O /tmp/$(basename "${K_JDK_URL}") \ + "${K_JDK_URL}" + RUN mkdir -p ${K_JDK_DIR} && \ tar -xzf ${K_JDK_TEMP} --strip-components=1 --directory ${K_JDK_DIR} && \ ln -sfv ${JAVA_HOME} /usr/jre && \ diff --git a/linux/ecosystem/testrail/5.4.1.3669/main/Dockerfile b/linux/ecosystem/testrail/5.4.1.3669/main/Dockerfile index d704d2a61..cfe4ffece 100644 --- a/linux/ecosystem/testrail/5.4.1.3669/main/Dockerfile +++ b/linux/ecosystem/testrail/5.4.1.3669/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.5.0.3727/main/Dockerfile b/linux/ecosystem/testrail/5.5.0.3727/main/Dockerfile index b43c4b959..4f44f282c 100644 --- a/linux/ecosystem/testrail/5.5.0.3727/main/Dockerfile +++ b/linux/ecosystem/testrail/5.5.0.3727/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.5.0.3731/main/Dockerfile b/linux/ecosystem/testrail/5.5.0.3731/main/Dockerfile index 838df7b76..7f1a70755 100644 --- a/linux/ecosystem/testrail/5.5.0.3731/main/Dockerfile +++ b/linux/ecosystem/testrail/5.5.0.3731/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.5.0.3735/main/Dockerfile b/linux/ecosystem/testrail/5.5.0.3735/main/Dockerfile index 96b0f0bce..d96d400ef 100644 --- a/linux/ecosystem/testrail/5.5.0.3735/main/Dockerfile +++ b/linux/ecosystem/testrail/5.5.0.3735/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.5.1.3746/main/Dockerfile b/linux/ecosystem/testrail/5.5.1.3746/main/Dockerfile index 164e31457..3eef8b430 100644 --- a/linux/ecosystem/testrail/5.5.1.3746/main/Dockerfile +++ b/linux/ecosystem/testrail/5.5.1.3746/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.6.0.3853/main/Dockerfile b/linux/ecosystem/testrail/5.6.0.3853/main/Dockerfile index 9a6acf9a6..da6473b52 100644 --- a/linux/ecosystem/testrail/5.6.0.3853/main/Dockerfile +++ b/linux/ecosystem/testrail/5.6.0.3853/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.6.0.3856/main/Dockerfile b/linux/ecosystem/testrail/5.6.0.3856/main/Dockerfile index 0e6562e92..6f31e3203 100644 --- a/linux/ecosystem/testrail/5.6.0.3856/main/Dockerfile +++ b/linux/ecosystem/testrail/5.6.0.3856/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.6.0.3861/main/Dockerfile b/linux/ecosystem/testrail/5.6.0.3861/main/Dockerfile index 7bc619d5f..34a9c6fb1 100644 --- a/linux/ecosystem/testrail/5.6.0.3861/main/Dockerfile +++ b/linux/ecosystem/testrail/5.6.0.3861/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.6.0.3862/main/Dockerfile b/linux/ecosystem/testrail/5.6.0.3862/main/Dockerfile index 2744d2558..322c19bf3 100644 --- a/linux/ecosystem/testrail/5.6.0.3862/main/Dockerfile +++ b/linux/ecosystem/testrail/5.6.0.3862/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.6.0.3865/main/Dockerfile b/linux/ecosystem/testrail/5.6.0.3865/main/Dockerfile index a0f10d97f..516e2db1b 100644 --- a/linux/ecosystem/testrail/5.6.0.3865/main/Dockerfile +++ b/linux/ecosystem/testrail/5.6.0.3865/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.7.0.3938/main/Dockerfile b/linux/ecosystem/testrail/5.7.0.3938/main/Dockerfile index 31fa29972..44447d8f8 100644 --- a/linux/ecosystem/testrail/5.7.0.3938/main/Dockerfile +++ b/linux/ecosystem/testrail/5.7.0.3938/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.7.0.3942/main/Dockerfile b/linux/ecosystem/testrail/5.7.0.3942/main/Dockerfile index 4a7053be7..10dadacc2 100644 --- a/linux/ecosystem/testrail/5.7.0.3942/main/Dockerfile +++ b/linux/ecosystem/testrail/5.7.0.3942/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.7.0.3951/main/Dockerfile b/linux/ecosystem/testrail/5.7.0.3951/main/Dockerfile index 2569218b7..4de3ecac6 100644 --- a/linux/ecosystem/testrail/5.7.0.3951/main/Dockerfile +++ b/linux/ecosystem/testrail/5.7.0.3951/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.7.1.4026/main/Dockerfile b/linux/ecosystem/testrail/5.7.1.4026/main/Dockerfile index 6626fedb8..ee6c6e7c3 100644 --- a/linux/ecosystem/testrail/5.7.1.4026/main/Dockerfile +++ b/linux/ecosystem/testrail/5.7.1.4026/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/5.7.1.4028/main/Dockerfile b/linux/ecosystem/testrail/5.7.1.4028/main/Dockerfile index ebf112be4..81174f0bf 100644 --- a/linux/ecosystem/testrail/5.7.1.4028/main/Dockerfile +++ b/linux/ecosystem/testrail/5.7.1.4028/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.0.0.4140/main/Dockerfile b/linux/ecosystem/testrail/6.0.0.4140/main/Dockerfile index 683a6adf9..5daac73bd 100644 --- a/linux/ecosystem/testrail/6.0.0.4140/main/Dockerfile +++ b/linux/ecosystem/testrail/6.0.0.4140/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.0.1.4163/main/Dockerfile b/linux/ecosystem/testrail/6.0.1.4163/main/Dockerfile index 373ce68bf..46c93112f 100644 --- a/linux/ecosystem/testrail/6.0.1.4163/main/Dockerfile +++ b/linux/ecosystem/testrail/6.0.1.4163/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.1.0.4367/main/Dockerfile b/linux/ecosystem/testrail/6.1.0.4367/main/Dockerfile index 73e67b6b0..b5d395a37 100644 --- a/linux/ecosystem/testrail/6.1.0.4367/main/Dockerfile +++ b/linux/ecosystem/testrail/6.1.0.4367/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.1.0.4369/main/Dockerfile b/linux/ecosystem/testrail/6.1.0.4369/main/Dockerfile index 8044b7706..64c2de669 100644 --- a/linux/ecosystem/testrail/6.1.0.4369/main/Dockerfile +++ b/linux/ecosystem/testrail/6.1.0.4369/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.1.1.1020/main/Dockerfile b/linux/ecosystem/testrail/6.1.1.1020/main/Dockerfile index 4ad59be00..d91fc8157 100644 --- a/linux/ecosystem/testrail/6.1.1.1020/main/Dockerfile +++ b/linux/ecosystem/testrail/6.1.1.1020/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.1.1.1021/main/Dockerfile b/linux/ecosystem/testrail/6.1.1.1021/main/Dockerfile index a8dbe8f9f..d8dcc8497 100644 --- a/linux/ecosystem/testrail/6.1.1.1021/main/Dockerfile +++ b/linux/ecosystem/testrail/6.1.1.1021/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.2.0.1085/main/Dockerfile b/linux/ecosystem/testrail/6.2.0.1085/main/Dockerfile index 455b6896c..a71a59212 100644 --- a/linux/ecosystem/testrail/6.2.0.1085/main/Dockerfile +++ b/linux/ecosystem/testrail/6.2.0.1085/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.2.1.1003/main/Dockerfile b/linux/ecosystem/testrail/6.2.1.1003/main/Dockerfile index 7ca663a3e..1db4ffe13 100644 --- a/linux/ecosystem/testrail/6.2.1.1003/main/Dockerfile +++ b/linux/ecosystem/testrail/6.2.1.1003/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.2.1.1005/main/Dockerfile b/linux/ecosystem/testrail/6.2.1.1005/main/Dockerfile index 9c5ab39bf..bf0478ad4 100644 --- a/linux/ecosystem/testrail/6.2.1.1005/main/Dockerfile +++ b/linux/ecosystem/testrail/6.2.1.1005/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.2.2.1107/main/Dockerfile b/linux/ecosystem/testrail/6.2.2.1107/main/Dockerfile index e0e85b6f2..89dd35c81 100644 --- a/linux/ecosystem/testrail/6.2.2.1107/main/Dockerfile +++ b/linux/ecosystem/testrail/6.2.2.1107/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.2.3.1114/main/Dockerfile b/linux/ecosystem/testrail/6.2.3.1114/main/Dockerfile index 92b773c31..08998fdcf 100644 --- a/linux/ecosystem/testrail/6.2.3.1114/main/Dockerfile +++ b/linux/ecosystem/testrail/6.2.3.1114/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.3.0.1120/main/Dockerfile b/linux/ecosystem/testrail/6.3.0.1120/main/Dockerfile index 0b765acda..b0979775e 100644 --- a/linux/ecosystem/testrail/6.3.0.1120/main/Dockerfile +++ b/linux/ecosystem/testrail/6.3.0.1120/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.3.1.1004/main/Dockerfile b/linux/ecosystem/testrail/6.3.1.1004/main/Dockerfile index 0662d2a8b..3de900622 100644 --- a/linux/ecosystem/testrail/6.3.1.1004/main/Dockerfile +++ b/linux/ecosystem/testrail/6.3.1.1004/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.3.1.1006/main/Dockerfile b/linux/ecosystem/testrail/6.3.1.1006/main/Dockerfile index 98774f433..544a7507c 100644 --- a/linux/ecosystem/testrail/6.3.1.1006/main/Dockerfile +++ b/linux/ecosystem/testrail/6.3.1.1006/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.4.0.1284/main/Dockerfile b/linux/ecosystem/testrail/6.4.0.1284/main/Dockerfile index 58ef4499a..39bfc32ad 100644 --- a/linux/ecosystem/testrail/6.4.0.1284/main/Dockerfile +++ b/linux/ecosystem/testrail/6.4.0.1284/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.4.0.1293/main/Dockerfile b/linux/ecosystem/testrail/6.4.0.1293/main/Dockerfile index 095bf67cc..c18f766b3 100644 --- a/linux/ecosystem/testrail/6.4.0.1293/main/Dockerfile +++ b/linux/ecosystem/testrail/6.4.0.1293/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.0.1298/main/Dockerfile b/linux/ecosystem/testrail/6.5.0.1298/main/Dockerfile index eb1a46867..517bce816 100644 --- a/linux/ecosystem/testrail/6.5.0.1298/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.0.1298/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.1.1002/main/Dockerfile b/linux/ecosystem/testrail/6.5.1.1002/main/Dockerfile index 693c717a6..c9a1e6ff3 100644 --- a/linux/ecosystem/testrail/6.5.1.1002/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.1.1002/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.3.1001/main/Dockerfile b/linux/ecosystem/testrail/6.5.3.1001/main/Dockerfile index b80cd52e3..87ec926c0 100644 --- a/linux/ecosystem/testrail/6.5.3.1001/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.3.1001/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.4.1002/main/Dockerfile b/linux/ecosystem/testrail/6.5.4.1002/main/Dockerfile index 436312fa2..27924954e 100644 --- a/linux/ecosystem/testrail/6.5.4.1002/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.4.1002/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.4.1007/main/Dockerfile b/linux/ecosystem/testrail/6.5.4.1007/main/Dockerfile index 159569c78..ff8a88cce 100644 --- a/linux/ecosystem/testrail/6.5.4.1007/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.4.1007/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.5.1009/main/Dockerfile b/linux/ecosystem/testrail/6.5.5.1009/main/Dockerfile index 0662cd228..96d0d718f 100644 --- a/linux/ecosystem/testrail/6.5.5.1009/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.5.1009/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.6.1014/main/Dockerfile b/linux/ecosystem/testrail/6.5.6.1014/main/Dockerfile index 650dd74d4..de232b174 100644 --- a/linux/ecosystem/testrail/6.5.6.1014/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.6.1014/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.5.7.1000/main/Dockerfile b/linux/ecosystem/testrail/6.5.7.1000/main/Dockerfile index 3051a230c..57e52b4de 100644 --- a/linux/ecosystem/testrail/6.5.7.1000/main/Dockerfile +++ b/linux/ecosystem/testrail/6.5.7.1000/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.6.0.1156/main/Dockerfile b/linux/ecosystem/testrail/6.6.0.1156/main/Dockerfile index b9b50d205..f926df94c 100644 --- a/linux/ecosystem/testrail/6.6.0.1156/main/Dockerfile +++ b/linux/ecosystem/testrail/6.6.0.1156/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.6.1.1166/main/Dockerfile b/linux/ecosystem/testrail/6.6.1.1166/main/Dockerfile index e92549419..1edec1de3 100644 --- a/linux/ecosystem/testrail/6.6.1.1166/main/Dockerfile +++ b/linux/ecosystem/testrail/6.6.1.1166/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.7.1.1020/main/Dockerfile b/linux/ecosystem/testrail/6.7.1.1020/main/Dockerfile index 1f0a0bb92..9de1c960a 100644 --- a/linux/ecosystem/testrail/6.7.1.1020/main/Dockerfile +++ b/linux/ecosystem/testrail/6.7.1.1020/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.7.2.1037/main/Dockerfile b/linux/ecosystem/testrail/6.7.2.1037/main/Dockerfile index f6ecf33e0..6ee6020a2 100644 --- a/linux/ecosystem/testrail/6.7.2.1037/main/Dockerfile +++ b/linux/ecosystem/testrail/6.7.2.1037/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/6.7.2.1043/main/Dockerfile b/linux/ecosystem/testrail/6.7.2.1043/main/Dockerfile index 9c1fe9487..ccae54a85 100644 --- a/linux/ecosystem/testrail/6.7.2.1043/main/Dockerfile +++ b/linux/ecosystem/testrail/6.7.2.1043/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.0.1057/main/Dockerfile b/linux/ecosystem/testrail/7.0.0.1057/main/Dockerfile index 826a431b6..66fbe25f7 100644 --- a/linux/ecosystem/testrail/7.0.0.1057/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.0.1057/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.1.1002/main/Dockerfile b/linux/ecosystem/testrail/7.0.1.1002/main/Dockerfile index 94e7bea04..81f6f3f77 100644 --- a/linux/ecosystem/testrail/7.0.1.1002/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.1.1002/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.1.1013/main/Dockerfile b/linux/ecosystem/testrail/7.0.1.1013/main/Dockerfile index 59e7649c2..e2d2cd7db 100644 --- a/linux/ecosystem/testrail/7.0.1.1013/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.1.1013/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.2.1014/main/Dockerfile b/linux/ecosystem/testrail/7.0.2.1014/main/Dockerfile index 00351848d..e383bccc2 100644 --- a/linux/ecosystem/testrail/7.0.2.1014/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.2.1014/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.2.1015/main/Dockerfile b/linux/ecosystem/testrail/7.0.2.1015/main/Dockerfile index 9a5d06cca..c49dd2db2 100644 --- a/linux/ecosystem/testrail/7.0.2.1015/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.2.1015/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.0.2.1016/main/Dockerfile b/linux/ecosystem/testrail/7.0.2.1016/main/Dockerfile index 5ec88d128..d5ff8f06a 100644 --- a/linux/ecosystem/testrail/7.0.2.1016/main/Dockerfile +++ b/linux/ecosystem/testrail/7.0.2.1016/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.4.1.8079/main/Dockerfile b/linux/ecosystem/testrail/7.4.1.8079/main/Dockerfile index 10c6c287d..f3f9be015 100644 --- a/linux/ecosystem/testrail/7.4.1.8079/main/Dockerfile +++ b/linux/ecosystem/testrail/7.4.1.8079/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.4.1.8091/main/Dockerfile b/linux/ecosystem/testrail/7.4.1.8091/main/Dockerfile index b87ae3ce5..26aff9870 100644 --- a/linux/ecosystem/testrail/7.4.1.8091/main/Dockerfile +++ b/linux/ecosystem/testrail/7.4.1.8091/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.4.1.8092/main/Dockerfile b/linux/ecosystem/testrail/7.4.1.8092/main/Dockerfile index 1d8cb4cdb..9fa7d722c 100644 --- a/linux/ecosystem/testrail/7.4.1.8092/main/Dockerfile +++ b/linux/ecosystem/testrail/7.4.1.8092/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.5.1.7010/main/Dockerfile b/linux/ecosystem/testrail/7.5.1.7010/main/Dockerfile index a01ea845a..f946ab1a6 100644 --- a/linux/ecosystem/testrail/7.5.1.7010/main/Dockerfile +++ b/linux/ecosystem/testrail/7.5.1.7010/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.5.1.7012/main/Dockerfile b/linux/ecosystem/testrail/7.5.1.7012/main/Dockerfile index 6707ead75..1b332f64b 100644 --- a/linux/ecosystem/testrail/7.5.1.7012/main/Dockerfile +++ b/linux/ecosystem/testrail/7.5.1.7012/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.5.1.7013/main/Dockerfile b/linux/ecosystem/testrail/7.5.1.7013/main/Dockerfile index d3d3c873d..9d50ef398 100644 --- a/linux/ecosystem/testrail/7.5.1.7013/main/Dockerfile +++ b/linux/ecosystem/testrail/7.5.1.7013/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.5.2.1002/main/Dockerfile b/linux/ecosystem/testrail/7.5.2.1002/main/Dockerfile index 3618866d6..ec82fd260 100644 --- a/linux/ecosystem/testrail/7.5.2.1002/main/Dockerfile +++ b/linux/ecosystem/testrail/7.5.2.1002/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/7.5.3.1000/main/Dockerfile b/linux/ecosystem/testrail/7.5.3.1000/main/Dockerfile index 5d9415526..bf1ec45de 100644 --- a/linux/ecosystem/testrail/7.5.3.1000/main/Dockerfile +++ b/linux/ecosystem/testrail/7.5.3.1000/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.0.0.1089/main/Dockerfile b/linux/ecosystem/testrail/8.0.0.1089/main/Dockerfile index 11cfbd834..a635367cf 100644 --- a/linux/ecosystem/testrail/8.0.0.1089/main/Dockerfile +++ b/linux/ecosystem/testrail/8.0.0.1089/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.0.1.1029/main/Dockerfile b/linux/ecosystem/testrail/8.0.1.1029/main/Dockerfile index 2239bb021..46f15b16b 100644 --- a/linux/ecosystem/testrail/8.0.1.1029/main/Dockerfile +++ b/linux/ecosystem/testrail/8.0.1.1029/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.0.4.7036/main/Dockerfile b/linux/ecosystem/testrail/8.0.4.7036/main/Dockerfile index 06d473429..aa5259c8d 100644 --- a/linux/ecosystem/testrail/8.0.4.7036/main/Dockerfile +++ b/linux/ecosystem/testrail/8.0.4.7036/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.0.6.1019/main/Dockerfile b/linux/ecosystem/testrail/8.0.6.1019/main/Dockerfile index bd9e32c21..b7d5f90b0 100644 --- a/linux/ecosystem/testrail/8.0.6.1019/main/Dockerfile +++ b/linux/ecosystem/testrail/8.0.6.1019/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.1.0.6165/main/Dockerfile b/linux/ecosystem/testrail/8.1.0.6165/main/Dockerfile index 259c8a1cf..2dfe4304a 100644 --- a/linux/ecosystem/testrail/8.1.0.6165/main/Dockerfile +++ b/linux/ecosystem/testrail/8.1.0.6165/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/8.1.0.6186/main/Dockerfile b/linux/ecosystem/testrail/8.1.0.6186/main/Dockerfile index 76615757f..6ada85142 100644 --- a/linux/ecosystem/testrail/8.1.0.6186/main/Dockerfile +++ b/linux/ecosystem/testrail/8.1.0.6186/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/9.0.0.1057/main/Dockerfile b/linux/ecosystem/testrail/9.0.0.1057/main/Dockerfile index 21e66afb4..12b61225a 100644 --- a/linux/ecosystem/testrail/9.0.0.1057/main/Dockerfile +++ b/linux/ecosystem/testrail/9.0.0.1057/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/9.0.0.1091/main/Dockerfile b/linux/ecosystem/testrail/9.0.0.1091/main/Dockerfile index 2d4231f12..40acccda0 100644 --- a/linux/ecosystem/testrail/9.0.0.1091/main/Dockerfile +++ b/linux/ecosystem/testrail/9.0.0.1091/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \ diff --git a/linux/ecosystem/testrail/9.1.0.1025/main/Dockerfile b/linux/ecosystem/testrail/9.1.0.1025/main/Dockerfile index a7f42767c..0f37eb5c6 100644 --- a/linux/ecosystem/testrail/9.1.0.1025/main/Dockerfile +++ b/linux/ecosystem/testrail/9.1.0.1025/main/Dockerfile @@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf -ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip +RUN wget -c \ + --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \ + --no-check-certificate \ + --tries=5 \ + --timeout=30 \ + --waitretry=5 \ + --retry-connrefused \ + --dns-timeout=10 \ + --read-timeout=20 \ + --progress=dot:giga \ + --no-clobber \ + -O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion81.zip \ + "${DOWNLOAD_URL}" + RUN echo "[testrail] Preparing folders" && \ mkdir -p ${TESTRAIL_RELEASE_DIR} && \ mkdir -p ${TR_WWW_PATH} && \