Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sajinieKavindya authored and chirangaalwis committed Aug 27, 2021
1 parent d71503a commit 8a9d1aa
Show file tree
Hide file tree
Showing 21 changed files with 40 additions and 38 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/analytics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/alpine/analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. <br>
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 `<DISTRIBUTION_HOME>/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 `<DISTRIBUTION_HOME>/wso2/analytics/conf`.
Copy the file to some suitable location of the host machine, referred to as `<SOURCE_CONFIGS>/carbon.xml` and
increase the offset value under ports by 1.

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/broker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/business-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/integrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/msf4j/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/centos/analytics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand All @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/centos/analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. <br>
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 `<DISTRIBUTION_HOME>/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 `<DISTRIBUTION_HOME>/wso2/analytics/conf`.
Copy the file to some suitable location of the host machine, referred to as `<SOURCE_CONFIGS>/carbon.xml` and
increase the offset value under ports by 1.

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/centos/analytics/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"
sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@"
6 changes: 3 additions & 3 deletions dockerfiles/centos/broker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand All @@ -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}
Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/centos/business-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand All @@ -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}
Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/centos/integrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand All @@ -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}
Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/centos/msf4j/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand All @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/analytics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9"

Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. <br>
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 `<DISTRIBUTION_HOME>/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 `<DISTRIBUTION_HOME>/wso2/analytics/conf`.
Copy the file to some suitable location of the host machine, referred to as `<SOURCE_CONFIGS>/carbon.xml` and
increase the offset value under ports by 1.

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu/analytics/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"
sh ${WSO2_SERVER_HOME}/bin/analytics.sh "$@"
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/broker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9"
# set user configurations
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/business-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9"
# set user configurations
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/integrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9"
# set user configurations
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/msf4j/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@wso2.org>" \
com.wso2.docker.source="https://github.com/wso2/docker-ei/releases/tag/v6.2.0.9"
# set user configurations
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit 8a9d1aa

Please sign in to comment.