From 8a9d1aa97a2b894c35deb8b80d6f1fc1c491d82a Mon Sep 17 00:00:00 2001 From: User Date: Thu, 26 Aug 2021 19:29:50 +0530 Subject: [PATCH] Fix review comments --- CHANGELOG.md | 2 ++ dockerfiles/alpine/analytics/Dockerfile | 2 +- dockerfiles/alpine/analytics/README.md | 4 ++-- dockerfiles/alpine/broker/Dockerfile | 2 +- dockerfiles/alpine/business-process/Dockerfile | 2 +- dockerfiles/alpine/integrator/Dockerfile | 2 +- dockerfiles/alpine/msf4j/Dockerfile | 2 +- dockerfiles/centos/analytics/Dockerfile | 6 +++--- dockerfiles/centos/analytics/README.md | 4 ++-- dockerfiles/centos/analytics/docker-entrypoint.sh | 2 +- dockerfiles/centos/broker/Dockerfile | 6 +++--- dockerfiles/centos/business-process/Dockerfile | 6 +++--- dockerfiles/centos/integrator/Dockerfile | 6 +++--- dockerfiles/centos/msf4j/Dockerfile | 6 +++--- dockerfiles/ubuntu/analytics/Dockerfile | 4 ++-- dockerfiles/ubuntu/analytics/README.md | 4 ++-- dockerfiles/ubuntu/analytics/docker-entrypoint.sh | 2 +- dockerfiles/ubuntu/broker/Dockerfile | 4 ++-- dockerfiles/ubuntu/business-process/Dockerfile | 4 ++-- dockerfiles/ubuntu/integrator/Dockerfile | 4 ++-- dockerfiles/ubuntu/msf4j/Dockerfile | 4 ++-- 21 files changed, 40 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea5db764..c9c24f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Changed - Update AdoptOpenJDK version to adoptopenjdk/openjdk8:jdk8u292-b10-alpine in all Alpine based images +- Update AdoptOpenJDK version to adoptopenjdk:8u292-b10-jdk-hotspot-focal in all Ubuntu based images +- Update AdoptOpenJDK version to jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10 in all Centos based images - Update K8s Membership scheme version to 1.0.7 ## [v6.2.0.8] - 2020-11-25 diff --git a/dockerfiles/alpine/analytics/Dockerfile b/dockerfiles/alpine/analytics/Dockerfile index 3706881f..29357549 100644 --- a/dockerfiles/alpine/analytics/Dockerfile +++ b/dockerfiles/alpine/analytics/Dockerfile @@ -67,7 +67,7 @@ RUN \ zip # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/alpine/analytics/README.md b/dockerfiles/alpine/analytics/README.md index b9bbc4a4..4f26be97 100644 --- a/dockerfiles/alpine/analytics/README.md +++ b/dockerfiles/alpine/analytics/README.md @@ -39,8 +39,8 @@ git clone https://github.com/wso2/docker-ei.git Configurations would lie on the Docker host machine and they can be volume mounted to the container.
As an example, steps required to change the port offset using `carbon.xml` is as follows. -##### 1. Stop the Broker profile container if it's already running. -In Broker profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. +##### 1. Stop the Analytics profile container if it's already running. +In Analytics profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. Copy the file to some suitable location of the host machine, referred to as `/carbon.xml` and increase the offset value under ports by 1. diff --git a/dockerfiles/alpine/broker/Dockerfile b/dockerfiles/alpine/broker/Dockerfile index 30c8e013..15689065 100644 --- a/dockerfiles/alpine/broker/Dockerfile +++ b/dockerfiles/alpine/broker/Dockerfile @@ -72,7 +72,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/alpine/business-process/Dockerfile b/dockerfiles/alpine/business-process/Dockerfile index e7ea10b6..6a42206e 100644 --- a/dockerfiles/alpine/business-process/Dockerfile +++ b/dockerfiles/alpine/business-process/Dockerfile @@ -72,7 +72,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/alpine/integrator/Dockerfile b/dockerfiles/alpine/integrator/Dockerfile index 55650f0b..5ff682d2 100644 --- a/dockerfiles/alpine/integrator/Dockerfile +++ b/dockerfiles/alpine/integrator/Dockerfile @@ -72,7 +72,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/alpine/msf4j/Dockerfile b/dockerfiles/alpine/msf4j/Dockerfile index 3d5b692b..22ffd8c8 100644 --- a/dockerfiles/alpine/msf4j/Dockerfile +++ b/dockerfiles/alpine/msf4j/Dockerfile @@ -71,7 +71,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/centos/analytics/Dockerfile b/dockerfiles/centos/analytics/Dockerfile index 385285f3..4537d966 100644 --- a/dockerfiles/centos/analytics/Dockerfile +++ b/dockerfiles/centos/analytics/Dockerfile @@ -29,7 +29,7 @@ ARG USER_HOME=/home/${USER} # set jdk configurations ARG JDK_NAME=OpenJDK8U-jdk_x64_linux_hotspot.tar.gz ARG JAVA_HOME=${USER_HOME}/java -ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz +ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz # build arguments for WSO2 product installation ARG WSO2_SERVER_NAME=wso2ei ARG WSO2_SERVER_VERSION=6.2.0 @@ -67,7 +67,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ @@ -79,7 +79,7 @@ RUN \ # install JDK RUN \ mkdir -p ${JAVA_HOME} \ - && wget --no-check-certificate -O ${JDK_NAME} ${JDK_URL} \ + && wget -O ${JDK_NAME} ${JDK_URL} \ && tar -xf ${JDK_NAME} -C ${JAVA_HOME} --strip-components=1 \ && chown wso2carbon:wso2 -R ${JAVA_HOME} \ && rm -f ${JDK_NAME} diff --git a/dockerfiles/centos/analytics/README.md b/dockerfiles/centos/analytics/README.md index b38ba533..8293bd59 100644 --- a/dockerfiles/centos/analytics/README.md +++ b/dockerfiles/centos/analytics/README.md @@ -39,8 +39,8 @@ git clone https://github.com/wso2/docker-ei.git Configurations would lie on the Docker host machine and they can be volume mounted to the container.
As an example, steps required to change the port offset using `carbon.xml` is as follows. -##### 1. Stop the Broker profile container if it's already running. -In Broker profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. +##### 1. Stop the Analytics profile container if it's already running. +In Analytics profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. Copy the file to some suitable location of the host machine, referred to as `/carbon.xml` and increase the offset value under ports by 1. diff --git a/dockerfiles/centos/analytics/docker-entrypoint.sh b/dockerfiles/centos/analytics/docker-entrypoint.sh index c3b82bf2..8acf2769 100755 --- a/dockerfiles/centos/analytics/docker-entrypoint.sh +++ b/dockerfiles/centos/analytics/docker-entrypoint.sh @@ -32,4 +32,4 @@ test -d ${config_volume} && [[ "$(ls -A ${config_volume})" ]] && cp -RL ${config test -d ${artifact_volume} && [[ "$(ls -A ${artifact_volume})" ]] && cp -RL ${artifact_volume}/* ${WSO2_SERVER_HOME}/ # start WSO2 Carbon server -sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@" \ No newline at end of file +sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@" diff --git a/dockerfiles/centos/broker/Dockerfile b/dockerfiles/centos/broker/Dockerfile index 945ce44b..18ae5ffb 100644 --- a/dockerfiles/centos/broker/Dockerfile +++ b/dockerfiles/centos/broker/Dockerfile @@ -29,7 +29,7 @@ ARG USER_HOME=/home/${USER} # set jdk configurations ARG JDK_NAME=OpenJDK8U-jdk_x64_linux_hotspot.tar.gz ARG JAVA_HOME=${USER_HOME}/java -ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz +ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz # build arguments for WSO2 product installation ARG WSO2_SERVER_NAME=wso2ei ARG WSO2_SERVER_VERSION=6.2.0 @@ -67,7 +67,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ @@ -79,7 +79,7 @@ RUN \ # install JDK RUN \ mkdir -p ${JAVA_HOME} \ - && wget --no-check-certificate -O ${JDK_NAME} ${JDK_URL} \ + && wget -O ${JDK_NAME} ${JDK_URL} \ && tar -xf ${JDK_NAME} -C ${JAVA_HOME} --strip-components=1 \ && chown wso2carbon:wso2 -R ${JAVA_HOME} \ && rm -f ${JDK_NAME} diff --git a/dockerfiles/centos/business-process/Dockerfile b/dockerfiles/centos/business-process/Dockerfile index 5be71ccc..f8ed2164 100644 --- a/dockerfiles/centos/business-process/Dockerfile +++ b/dockerfiles/centos/business-process/Dockerfile @@ -29,7 +29,7 @@ ARG USER_HOME=/home/${USER} # set jdk configurations ARG JDK_NAME=OpenJDK8U-jdk_x64_linux_hotspot.tar.gz ARG JAVA_HOME=${USER_HOME}/java -ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz +ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz # build arguments for WSO2 product installation ARG WSO2_SERVER_NAME=wso2ei ARG WSO2_SERVER_VERSION=6.2.0 @@ -67,7 +67,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ @@ -79,7 +79,7 @@ RUN \ # install JDK RUN \ mkdir -p ${JAVA_HOME} \ - && wget --no-check-certificate -O ${JDK_NAME} ${JDK_URL} \ + && wget -O ${JDK_NAME} ${JDK_URL} \ && tar -xf ${JDK_NAME} -C ${JAVA_HOME} --strip-components=1 \ && chown wso2carbon:wso2 -R ${JAVA_HOME} \ && rm -f ${JDK_NAME} diff --git a/dockerfiles/centos/integrator/Dockerfile b/dockerfiles/centos/integrator/Dockerfile index ec5a0f5a..ad5d21c3 100644 --- a/dockerfiles/centos/integrator/Dockerfile +++ b/dockerfiles/centos/integrator/Dockerfile @@ -29,7 +29,7 @@ ARG USER_HOME=/home/${USER} # set jdk configurations ARG JDK_NAME=OpenJDK8U-jdk_x64_linux_hotspot.tar.gz ARG JAVA_HOME=${USER_HOME}/java -ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz +ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz # build arguments for WSO2 product installation ARG WSO2_SERVER_NAME=wso2ei ARG WSO2_SERVER_VERSION=6.2.0 @@ -67,7 +67,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ @@ -79,7 +79,7 @@ RUN \ # install JDK RUN \ mkdir -p ${JAVA_HOME} \ - && wget --no-check-certificate -O ${JDK_NAME} ${JDK_URL} \ + && wget -O ${JDK_NAME} ${JDK_URL} \ && tar -xf ${JDK_NAME} -C ${JAVA_HOME} --strip-components=1 \ && chown wso2carbon:wso2 -R ${JAVA_HOME} \ && rm -f ${JDK_NAME} diff --git a/dockerfiles/centos/msf4j/Dockerfile b/dockerfiles/centos/msf4j/Dockerfile index 4e3ea8fb..f27ed9ad 100644 --- a/dockerfiles/centos/msf4j/Dockerfile +++ b/dockerfiles/centos/msf4j/Dockerfile @@ -29,7 +29,7 @@ ARG USER_HOME=/home/${USER} # set jdk configurations ARG JDK_NAME=OpenJDK8U-jdk_x64_linux_hotspot.tar.gz ARG JAVA_HOME=${USER_HOME}/java -ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u212-b03/OpenJDK8U-jdk_x64_linux_hotspot_8u212b03.tar.gz +ARG JDK_URL=https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz # build arguments for WSO2 product installation ARG WSO2_SERVER_NAME=wso2ei ARG WSO2_SERVER_VERSION=6.2.0 @@ -67,7 +67,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ # add the WSO2 product distribution to user's home directory RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ @@ -79,7 +79,7 @@ RUN \ # install JDK RUN \ mkdir -p ${JAVA_HOME} \ - && wget --no-check-certificate -O ${JDK_NAME} ${JDK_URL} \ + && wget -O ${JDK_NAME} ${JDK_URL} \ && tar -xf ${JDK_NAME} -C ${JAVA_HOME} --strip-components=1 \ && chown wso2carbon:wso2 -R ${JAVA_HOME} \ && rm -f ${JDK_NAME} diff --git a/dockerfiles/ubuntu/analytics/Dockerfile b/dockerfiles/ubuntu/analytics/Dockerfile index 42cd58a0..28b248b3 100644 --- a/dockerfiles/ubuntu/analytics/Dockerfile +++ b/dockerfiles/ubuntu/analytics/Dockerfile @@ -17,7 +17,7 @@ # ------------------------------------------------------------------------ # set base Docker image to AdoptOpenJDK Ubuntu Docker image -FROM adoptopenjdk:8u282-b08-jdk-hotspot-focal +FROM adoptopenjdk:8u292-b10-jdk-hotspot-focal LABEL maintainer="WSO2 Docker Maintainers " \ com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9" @@ -69,7 +69,7 @@ RUN groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} && \ COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/ubuntu/analytics/README.md b/dockerfiles/ubuntu/analytics/README.md index aa137687..fcc83936 100644 --- a/dockerfiles/ubuntu/analytics/README.md +++ b/dockerfiles/ubuntu/analytics/README.md @@ -39,8 +39,8 @@ git clone https://github.com/wso2/docker-ei.git Configurations would lie on the Docker host machine and they can be volume mounted to the container.
As an example, steps required to change the port offset using `carbon.xml` is as follows. -##### 1. Stop the Broker profile container if it's already running. -In Broker profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. +##### 1. Stop the Analytics profile container if it's already running. +In Analytics profile product distribution, `carbon.xml` configuration file can be found at `/wso2/analytics/conf`. Copy the file to some suitable location of the host machine, referred to as `/carbon.xml` and increase the offset value under ports by 1. diff --git a/dockerfiles/ubuntu/analytics/docker-entrypoint.sh b/dockerfiles/ubuntu/analytics/docker-entrypoint.sh index c3b82bf2..8acf2769 100755 --- a/dockerfiles/ubuntu/analytics/docker-entrypoint.sh +++ b/dockerfiles/ubuntu/analytics/docker-entrypoint.sh @@ -32,4 +32,4 @@ test -d ${config_volume} && [[ "$(ls -A ${config_volume})" ]] && cp -RL ${config test -d ${artifact_volume} && [[ "$(ls -A ${artifact_volume})" ]] && cp -RL ${artifact_volume}/* ${WSO2_SERVER_HOME}/ # start WSO2 Carbon server -sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@" \ No newline at end of file +sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@" diff --git a/dockerfiles/ubuntu/broker/Dockerfile b/dockerfiles/ubuntu/broker/Dockerfile index 89270a16..cdcd6d43 100644 --- a/dockerfiles/ubuntu/broker/Dockerfile +++ b/dockerfiles/ubuntu/broker/Dockerfile @@ -17,7 +17,7 @@ # ------------------------------------------------------------------------ # set base Docker image to AdoptOpenJDK Ubuntu Docker image -FROM adoptopenjdk:8u282-b08-jdk-hotspot-focal +FROM adoptopenjdk:8u292-b10-jdk-hotspot-focal LABEL maintainer="WSO2 Docker Maintainers " \ com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9" # set user configurations @@ -72,7 +72,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/ubuntu/business-process/Dockerfile b/dockerfiles/ubuntu/business-process/Dockerfile index a87a7c40..f7db08b5 100644 --- a/dockerfiles/ubuntu/business-process/Dockerfile +++ b/dockerfiles/ubuntu/business-process/Dockerfile @@ -17,7 +17,7 @@ # ------------------------------------------------------------------------ # set base Docker image to AdoptOpenJDK Ubuntu Docker image -FROM adoptopenjdk:8u282-b08-jdk-hotspot-focal +FROM adoptopenjdk:8u292-b10-jdk-hotspot-focal LABEL maintainer="WSO2 Docker Maintainers " \ com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9" # set user configurations @@ -75,7 +75,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/ubuntu/integrator/Dockerfile b/dockerfiles/ubuntu/integrator/Dockerfile index 19ca8f38..4936ee46 100644 --- a/dockerfiles/ubuntu/integrator/Dockerfile +++ b/dockerfiles/ubuntu/integrator/Dockerfile @@ -17,7 +17,7 @@ # ------------------------------------------------------------------------ # set base Docker image to AdoptOpenJDK Ubuntu Docker image -FROM adoptopenjdk:8u282-b08-jdk-hotspot-focal +FROM adoptopenjdk:8u292-b10-jdk-hotspot-focal LABEL maintainer="WSO2 Docker Maintainers " \ com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9" # set user configurations @@ -72,7 +72,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \ diff --git a/dockerfiles/ubuntu/msf4j/Dockerfile b/dockerfiles/ubuntu/msf4j/Dockerfile index 6058c810..291eb208 100644 --- a/dockerfiles/ubuntu/msf4j/Dockerfile +++ b/dockerfiles/ubuntu/msf4j/Dockerfile @@ -17,7 +17,7 @@ # ------------------------------------------------------------------------ # set base Docker image to AdoptOpenJDK Ubuntu Docker image -FROM adoptopenjdk:8u282-b08-jdk-hotspot-focal +FROM adoptopenjdk:8u292-b10-jdk-hotspot-focal LABEL maintainer="WSO2 Docker Maintainers " \ com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9" # set user configurations @@ -70,7 +70,7 @@ RUN mkdir -p ${USER_HOME}/.java/.systemPrefs && \ chmod -R 755 ${USER_HOME}/.java && \ chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java RUN \ - wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ + wget -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ && unzip -d ${USER_HOME} ${WSO2_SERVER}.zip \ && rm -f ${WSO2_SERVER}.zip \ && echo "${WSO2_SERVER_PROFILE_OPTIMIZER_NUMBER}" | bash ${WSO2_SERVER_HOME}/bin/profile-creator.sh \