-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from gershom96/5.11.x
[5.11.x] Modified Dockerfiles to have OS based base image and adoptium JDK 8 and 11 for IS
- Loading branch information
Showing
7 changed files
with
271 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,46 @@ | |
# | ||
# ------------------------------------------------------------------------ | ||
|
||
# set base Docker image to AdoptOpenJDK Alpine Docker image | ||
FROM adoptopenjdk/openjdk11:jdk-11.0.11_9-alpine | ||
# set base Docker image to Alpine Docker image | ||
FROM alpine:3.15.0 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.8" | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.11" | ||
|
||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
# Install JDK Dependencies | ||
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
ENV JAVA_VERSION jdk-11.0.14+9 | ||
|
||
# Install JDK11 | ||
RUN set -eux; \ | ||
apk add --no-cache --virtual .fetch-deps curl; \ | ||
ARCH="$(apk --print-arch)"; \ | ||
case "${ARCH}" in \ | ||
amd64|x86_64) \ | ||
ESUM='f94a01258a5496eda9e3de6807e6ecfe08a5ad4a2d42e4332a77f74174706f5c'; \ | ||
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jdk_x64_alpine-linux_hotspot_11.0.14_9.tar.gz'; \ | ||
;; \ | ||
*) \ | ||
echo "Unsupported arch: ${ARCH}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p /opt/java/openjdk; \ | ||
tar --extract \ | ||
--file /tmp/openjdk.tar.gz \ | ||
--directory /opt/java/openjdk \ | ||
--strip-components 1 \ | ||
--no-same-owner \ | ||
; \ | ||
rm -rf /tmp/openjdk.tar.gz; | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk \ | ||
PATH="/opt/java/openjdk/bin:$PATH" ENV=${USER_HOME}"/.ashrc" | ||
|
||
# set Docker image build arguments | ||
# build arguments for user/group configurations | ||
|
@@ -38,26 +74,38 @@ ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/relea | |
# build arguments for external artifacts | ||
ARG DNS_JAVA_VERSION=2.1.8 | ||
ARG K8S_MEMBERSHIP_SCHEME_VERSION=1.0.8 | ||
ARG MYSQL_CONNECTOR_VERSION=8.0.17 | ||
# build argument for MOTD | ||
ARG MOTD='printf "\n\ | ||
Welcome to WSO2 Docker Resources \n\ | ||
--------------------------------- \n\ | ||
This Docker container comprises of a WSO2 product, running with its latest GA release \n\ | ||
which is under the Apache License, Version 2.0. \n\ | ||
Read more about Apache License, Version 2.0 here @ http://www.apache.org/licenses/LICENSE-2.0.\n"' | ||
ENV ENV=${USER_HOME}"/.ashrc" | ||
|
||
# create the non-root user and group and set MOTD login message | ||
RUN \ | ||
addgroup -S -g ${USER_GROUP_ID} ${USER_GROUP} \ | ||
&& adduser -S -u ${USER_ID} -h ${USER_HOME} -G ${USER_GROUP} ${USER} \ | ||
&& echo ${MOTD} > "${ENV}" | ||
|
||
# create Java prefs dir | ||
# this is to avoid warning logs printed by FileSystemPreferences class | ||
RUN \ | ||
mkdir -p ${USER_HOME}/.java/.systemPrefs \ | ||
&& mkdir -p ${USER_HOME}/.java/.userPrefs \ | ||
&& chmod -R 755 ${USER_HOME}/.java \ | ||
&& chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java | ||
|
||
# copy init script to user home | ||
COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ | ||
|
||
# install required packages | ||
RUN apk add --no-cache netcat-openbsd | ||
RUN \ | ||
apk update \ | ||
&& apk add --no-cache netcat-openbsd \ | ||
&& apk add unzip \ | ||
&& apk add wget | ||
|
||
# add the WSO2 product distribution to user's home directory | ||
RUN \ | ||
|
@@ -69,6 +117,8 @@ RUN \ | |
# add libraries for Kubernetes membership scheme based clustering | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/dnsjava/dnsjava/${DNS_JAVA_VERSION}/dnsjava-${DNS_JAVA_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/lib | ||
ADD --chown=wso2carbon:wso2 http://maven.wso2.org/nexus/content/repositories/releases/org/wso2/carbon/kubernetes/artifacts/kubernetes-membership-scheme/${K8S_MEMBERSHIP_SCHEME_VERSION}/kubernetes-membership-scheme-${K8S_MEMBERSHIP_SCHEME_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins | ||
# add MySQL JDBC connector to server home as a third party library | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_CONNECTOR_VERSION}/mysql-connector-java-${MYSQL_CONNECTOR_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins/ | ||
|
||
# set the user and work directory | ||
USER ${USER_ID} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,41 @@ | |
# | ||
# ------------------------------------------------------------------------ | ||
|
||
# set base Docker image to AdoptOpenJDK CentOS Docker image | ||
FROM adoptopenjdk/openjdk11:x86_64-centos-jdk-11.0.11_9 | ||
# set base Docker image to CentOS Docker image | ||
FROM centos:7 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.8" | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.11" | ||
|
||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
# Install JDK Dependencies | ||
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \ | ||
&& yum clean all | ||
|
||
ENV JAVA_VERSION jdk-11.0.13+8 | ||
|
||
# Install JDK11 | ||
RUN set -eux; \ | ||
ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \ | ||
case "${ARCH}" in \ | ||
amd64|i386:x86-64) \ | ||
ESUM='3b1c0c34be4c894e64135a454f2d5aaa4bd10aea04ec2fa0c0efe6bb26528e30'; \ | ||
BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.13_8.tar.gz'; \ | ||
;; \ | ||
*) \ | ||
echo "Unsupported arch: ${ARCH}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p /opt/java/openjdk; \ | ||
cd /opt/java/openjdk; \ | ||
tar -xf /tmp/openjdk.tar.gz --strip-components=1; \ | ||
rm -rf /tmp/openjdk.tar.gz; | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk \ | ||
PATH="/opt/java/openjdk/bin:$PATH" | ||
|
||
# set Docker image build arguments | ||
# build arguments for user/group configurations | ||
|
@@ -38,19 +69,27 @@ ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/relea | |
# build arguments for external artifacts | ||
ARG DNS_JAVA_VERSION=2.1.8 | ||
ARG K8S_MEMBERSHIP_SCHEME_VERSION=1.0.8 | ||
ARG MYSQL_CONNECTOR_VERSION=8.0.17 | ||
# build argument for MOTD | ||
ARG MOTD='printf "\n\ | ||
Welcome to WSO2 Docker resources.\n\ | ||
------------------------------------ \n\ | ||
This Docker container comprises of a WSO2 product, running with its latest GA release \n\ | ||
which is under the Apache License, Version 2.0. \n\ | ||
Read more about Apache License, Version 2.0 here @ http://www.apache.org/licenses/LICENSE-2.0.\n\n"' | ||
Read more about Apache License, Version 2.0 here @ http://www.apache.org/licenses/LICENSE-2.0.\n"' | ||
|
||
# create the non-root user and group and set MOTD login message | ||
RUN \ | ||
groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} \ | ||
&& useradd --system --create-home --home-dir ${USER_HOME} --no-log-init -g ${USER_GROUP_ID} -u ${USER_ID} ${USER} \ | ||
&& echo ${MOTD} > /etc/profile.d/motd.sh | ||
# create Java prefs dir | ||
# this is to avoid warning logs printed by FileSystemPreferences class | ||
RUN \ | ||
mkdir -p ${USER_HOME}/.java/.systemPrefs \ | ||
&& mkdir -p ${USER_HOME}/.java/.userPrefs \ | ||
&& chmod -R 755 ${USER_HOME}/.java \ | ||
&& chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java | ||
|
||
# copy init script to user home | ||
COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ | ||
|
@@ -74,6 +113,8 @@ RUN \ | |
# add libraries for Kubernetes membership scheme based clustering | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/dnsjava/dnsjava/${DNS_JAVA_VERSION}/dnsjava-${DNS_JAVA_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/lib | ||
ADD --chown=wso2carbon:wso2 http://maven.wso2.org/nexus/content/repositories/releases/org/wso2/carbon/kubernetes/artifacts/kubernetes-membership-scheme/${K8S_MEMBERSHIP_SCHEME_VERSION}/kubernetes-membership-scheme-${K8S_MEMBERSHIP_SCHEME_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins | ||
# add MySQL JDBC connector to server home as a third party library | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_CONNECTOR_VERSION}/mysql-connector-java-${MYSQL_CONNECTOR_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins/ | ||
|
||
# set the user and work directory | ||
USER ${USER_ID} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,58 @@ | |
# | ||
# ------------------------------------------------------------------------ | ||
|
||
# set base Docker image to AdoptOpenJDK Alpine Docker image | ||
FROM adoptopenjdk/openjdk8:jdk8u292-b10-alpine | ||
# set base Docker image to Alpine Docker image | ||
FROM alpine:3.15.0 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.8" | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.11" | ||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
# Install JDK Dependencies | ||
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
ENV JAVA_VERSION jdk8u322-b06 | ||
|
||
RUN apk --no-progress --purge --no-cache upgrade \ | ||
&& apk --no-progress --purge --no-cache add --upgrade \ | ||
curl \ | ||
wget \ | ||
openssh \ | ||
&& apk --no-progress --purge --no-cache upgrade \ | ||
&& rm -vrf /var/cache/apk/* \ | ||
&& curl --version | ||
|
||
RUN curl -o /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub \ | ||
&& curl -LO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.32-r0/glibc-2.32-r0.apk \ | ||
&& apk add glibc-2.32-r0.apk | ||
|
||
#Install JDK8 | ||
RUN set -eux; \ | ||
apk add --no-cache --virtual .fetch-deps curl; \ | ||
ARCH="$(apk --print-arch)"; \ | ||
case "${ARCH}" in \ | ||
amd64|x86_64) \ | ||
ESUM='3d62362a78c9412766471b05253507a4cfc212daea5cdf122860173ce902400e'; \ | ||
BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz'; \ | ||
;; \ | ||
*) \ | ||
echo "Unsupported arch: ${ARCH}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p /opt/java/openjdk; \ | ||
tar --extract \ | ||
--file /tmp/openjdk.tar.gz \ | ||
--directory /opt/java/openjdk \ | ||
--strip-components 1 \ | ||
--no-same-owner \ | ||
; \ | ||
rm -rf /tmp/openjdk.tar.gz; | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk \ | ||
PATH="/opt/java/openjdk/bin:$PATH" ENV=${USER_HOME}"/.ashrc" | ||
|
||
# set Docker image build arguments | ||
# build arguments for user/group configurations | ||
|
@@ -38,6 +86,7 @@ ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/relea | |
# build arguments for external artifacts | ||
ARG DNS_JAVA_VERSION=2.1.8 | ||
ARG K8S_MEMBERSHIP_SCHEME_VERSION=1.0.8 | ||
ARG MYSQL_CONNECTOR_VERSION=8.0.17 | ||
# build argument for MOTD | ||
ARG MOTD='printf "\n\ | ||
Welcome to WSO2 Docker Resources \n\ | ||
|
@@ -53,11 +102,23 @@ RUN \ | |
&& adduser -S -u ${USER_ID} -h ${USER_HOME} -G ${USER_GROUP} ${USER} \ | ||
&& echo ${MOTD} > "${ENV}" | ||
|
||
# create Java prefs dir | ||
# this is to avoid warning logs printed by FileSystemPreferences class | ||
RUN \ | ||
mkdir -p ${USER_HOME}/.java/.systemPrefs \ | ||
&& mkdir -p ${USER_HOME}/.java/.userPrefs \ | ||
&& chmod -R 755 ${USER_HOME}/.java \ | ||
&& chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java | ||
|
||
# copy init script to user home | ||
COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ | ||
|
||
# install required packages | ||
RUN apk add --no-cache netcat-openbsd | ||
RUN \ | ||
apk update \ | ||
&& apk add --no-cache netcat-openbsd \ | ||
&& apk add unzip \ | ||
&& apk add wget | ||
|
||
# add the WSO2 product distribution to user's home directory | ||
RUN \ | ||
|
@@ -69,6 +130,8 @@ RUN \ | |
# add libraries for Kubernetes membership scheme based clustering | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/dnsjava/dnsjava/${DNS_JAVA_VERSION}/dnsjava-${DNS_JAVA_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/lib | ||
ADD --chown=wso2carbon:wso2 http://maven.wso2.org/nexus/content/repositories/releases/org/wso2/carbon/kubernetes/artifacts/kubernetes-membership-scheme/${K8S_MEMBERSHIP_SCHEME_VERSION}/kubernetes-membership-scheme-${K8S_MEMBERSHIP_SCHEME_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins | ||
# add MySQL JDBC connector to server home as a third party library | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_CONNECTOR_VERSION}/mysql-connector-java-${MYSQL_CONNECTOR_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins/ | ||
|
||
# set the user and work directory | ||
USER ${USER_ID} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,40 @@ | |
# | ||
# ------------------------------------------------------------------------ | ||
|
||
# set base Docker image to AdoptOpenJDK CentOS Docker image | ||
FROM adoptopenjdk/openjdk8:jdk8u292-b10-centos | ||
# set base Docker image to CentOS Docker image | ||
FROM centos:7 | ||
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \ | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.8" | ||
com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.11.0.11" | ||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
# Instal JDK Dependencies | ||
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \ | ||
&& yum clean all | ||
|
||
ENV JAVA_VERSION jdk8u322-b06 | ||
|
||
# Install JDK8 | ||
RUN set -eux; \ | ||
ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \ | ||
case "${ARCH}" in \ | ||
amd64|i386:x86-64) \ | ||
ESUM='3d62362a78c9412766471b05253507a4cfc212daea5cdf122860173ce902400e'; \ | ||
BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz'; \ | ||
;; \ | ||
*) \ | ||
echo "Unsupported arch: ${ARCH}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p /opt/java/openjdk; \ | ||
cd /opt/java/openjdk; \ | ||
tar -xf /tmp/openjdk.tar.gz --strip-components=1; \ | ||
rm -rf /tmp/openjdk.tar.gz; | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk \ | ||
PATH="/opt/java/openjdk/bin:$PATH" | ||
|
||
# set Docker image build arguments | ||
# build arguments for user/group configurations | ||
|
@@ -38,19 +68,27 @@ ARG WSO2_SERVER_DIST_URL=https://github.com/wso2/${WSO2_SERVER_REPOSITORY}/relea | |
# build arguments for external artifacts | ||
ARG DNS_JAVA_VERSION=2.1.8 | ||
ARG K8S_MEMBERSHIP_SCHEME_VERSION=1.0.8 | ||
ARG MYSQL_CONNECTOR_VERSION=8.0.17 | ||
# build argument for MOTD | ||
ARG MOTD='printf "\n\ | ||
Welcome to WSO2 Docker resources.\n\ | ||
------------------------------------ \n\ | ||
This Docker container comprises of a WSO2 product, running with its latest GA release \n\ | ||
which is under the Apache License, Version 2.0. \n\ | ||
Read more about Apache License, Version 2.0 here @ http://www.apache.org/licenses/LICENSE-2.0.\n\n"' | ||
Read more about Apache License, Version 2.0 here @ http://www.apache.org/licenses/LICENSE-2.0.\n"' | ||
|
||
# create the non-root user and group and set MOTD login message | ||
RUN \ | ||
groupadd --system -g ${USER_GROUP_ID} ${USER_GROUP} \ | ||
&& useradd --system --create-home --home-dir ${USER_HOME} --no-log-init -g ${USER_GROUP_ID} -u ${USER_ID} ${USER} \ | ||
&& echo ${MOTD} > /etc/profile.d/motd.sh | ||
# create Java prefs dir | ||
# this is to avoid warning logs printed by FileSystemPreferences class | ||
RUN \ | ||
mkdir -p ${USER_HOME}/.java/.systemPrefs \ | ||
&& mkdir -p ${USER_HOME}/.java/.userPrefs \ | ||
&& chmod -R 755 ${USER_HOME}/.java \ | ||
&& chown -R ${USER}:${USER_GROUP} ${USER_HOME}/.java | ||
|
||
# copy init script to user home | ||
COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ | ||
|
@@ -74,6 +112,8 @@ RUN \ | |
# add libraries for Kubernetes membership scheme based clustering | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/dnsjava/dnsjava/${DNS_JAVA_VERSION}/dnsjava-${DNS_JAVA_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/lib | ||
ADD --chown=wso2carbon:wso2 http://maven.wso2.org/nexus/content/repositories/releases/org/wso2/carbon/kubernetes/artifacts/kubernetes-membership-scheme/${K8S_MEMBERSHIP_SCHEME_VERSION}/kubernetes-membership-scheme-${K8S_MEMBERSHIP_SCHEME_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins | ||
# add MySQL JDBC connector to server home as a third party library | ||
ADD --chown=wso2carbon:wso2 https://repo1.maven.org/maven2/mysql/mysql-connector-java/${MYSQL_CONNECTOR_VERSION}/mysql-connector-java-${MYSQL_CONNECTOR_VERSION}.jar ${WSO2_SERVER_HOME}/repository/components/dropins/ | ||
|
||
# set the user and work directory | ||
USER ${USER_ID} | ||
|
Oops, something went wrong.