forked from adoptium/containers
-
Notifications
You must be signed in to change notification settings - Fork 0
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 adoptium#1 from narkedi/main
Updating the Docker files for IBM Semeru OE
- Loading branch information
Showing
52 changed files
with
3,682 additions
and
100 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 |
---|---|---|
|
@@ -7,4 +7,4 @@ hadolint/ | |
shellcheck/ | ||
eclipse-temurin | ||
*hotspot.txt | ||
library/ | ||
library/ |
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 |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# (C) Copyright IBM Corporation 2021 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM centos:7 | ||
|
||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \ | ||
&& yum update -y; yum clean all | ||
|
||
ENV JAVA_VERSION jdk-11.0.12+7_openj9-0.27.0 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(uname -m)"; \ | ||
case "${ARCH}" in \ | ||
amd64|x86_64) \ | ||
ESUM='4c2d776f69e3ff7d01cd57c0938b7a7f058264425faf18e3708b905e93f915c4'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz'; \ | ||
;; \ | ||
ppc64el|ppc64le) \ | ||
ESUM='7d49a5b29a84831526f7bffaaee399ac9a26d05712ac4b9cb7ca0a370ed3f020'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.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" | ||
ENV JAVA_TOOL_OPTIONS="-XX:+IgnoreUnrecognizedVMOptions -XX:+IdleTuningGcOnIdle -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal" | ||
|
||
# Create OpenJ9 SharedClassCache (SCC) for bootclasses to improve the java startup. | ||
# Downloads and runs tomcat to generate SCC for bootclasses at /opt/java/.scc/openj9_system_scc | ||
# Does a dry-run and calculates the optimal cache size and recreates the cache with the appropriate size. | ||
# With SCC, OpenJ9 startup is improved ~50% with an increase in image size of ~14MB | ||
# Application classes can be create a separate cache layer with this as the base for further startup improvement | ||
|
||
RUN set -eux; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ | ||
SCC_SIZE="50m"; \ | ||
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \ | ||
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \ | ||
TOMCAT_CHECKSUM="0db27185d9fc3174f2c670f814df3dda8a008b89d1a38a5d96cbbe119767ebfb1cf0bce956b27954aee9be19c4a7b91f2579d967932207976322033a86075f98"; \ | ||
TOMCAT_DWNLD_URL="https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.35/bin/apache-tomcat-9.0.35.tar.gz"; \ | ||
\ | ||
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \ | ||
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \ | ||
echo "${TOMCAT_CHECKSUM} *${DOWNLOAD_PATH_TOMCAT}/tomcat.tar.gz" | sha512sum -c -; \ | ||
tar -xf "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz -C "${INSTALL_PATH_TOMCAT}" --strip-components=1; \ | ||
rm -rf "${DOWNLOAD_PATH_TOMCAT}"; \ | ||
\ | ||
java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 15; \ | ||
FULL=$( (java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
DST_CACHE=$(java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,destroy 2>&1 || true); \ | ||
SCC_SIZE=$(echo $SCC_SIZE | sed 's/.$//'); \ | ||
SCC_SIZE=$(awk "BEGIN {print int($SCC_SIZE * $FULL / 100.0)}"); \ | ||
[ "${SCC_SIZE}" -eq 0 ] && SCC_SIZE=1; \ | ||
SCC_SIZE="${SCC_SIZE}m"; \ | ||
java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ \ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 5; \ | ||
FULL=$( (java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
echo "SCC layer is $FULL% full."; \ | ||
rm -rf "${INSTALL_PATH_TOMCAT}"; \ | ||
if [ -d "/opt/java/.scc" ]; then \ | ||
chmod -R 0777 /opt/java/.scc; \ | ||
fi; \ | ||
\ | ||
echo "SCC generation phase completed"; | ||
|
||
CMD ["jshell"] |
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 |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# (C) Copyright IBM Corporation 2021 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 | ||
|
||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
RUN microdnf install -y tzdata openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar \ | ||
&& microdnf update -y; microdnf clean all | ||
|
||
LABEL name="IBM Semeru Runtime Open Edition" \ | ||
vendor="International Business Machines Corporation" \ | ||
version="jdk-11.0.12+7_openj9-0.27.0" \ | ||
release="11" \ | ||
run="docker run --rm -ti <image_name:tag> /bin/bash" \ | ||
summary="IBM Semeru Runtime Docker Image for OpenJDK with openj9 and ubi-minimal" \ | ||
description="For more information on this image please see https://github.com/ibmruntimes/openjdk-docker/blob/master/README.md" | ||
|
||
ENV JAVA_VERSION jdk-11.0.12+7_openj9-0.27.0 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(uname -m)"; \ | ||
case "${ARCH}" in \ | ||
amd64|x86_64) \ | ||
ESUM='4c2d776f69e3ff7d01cd57c0938b7a7f058264425faf18e3708b905e93f915c4'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz'; \ | ||
;; \ | ||
ppc64el|ppc64le) \ | ||
ESUM='7d49a5b29a84831526f7bffaaee399ac9a26d05712ac4b9cb7ca0a370ed3f020'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz'; \ | ||
;; \ | ||
s390x) \ | ||
ESUM='991f8df53079378782b9de3bbfd4c52a19920ea9ba90e9a54c871ce47b599cdb'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.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" | ||
ENV JAVA_TOOL_OPTIONS="-XX:+IgnoreUnrecognizedVMOptions -XX:+IdleTuningGcOnIdle -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal" | ||
|
||
# Create OpenJ9 SharedClassCache (SCC) for bootclasses to improve the java startup. | ||
# Downloads and runs tomcat to generate SCC for bootclasses at /opt/java/.scc/openj9_system_scc | ||
# Does a dry-run and calculates the optimal cache size and recreates the cache with the appropriate size. | ||
# With SCC, OpenJ9 startup is improved ~50% with an increase in image size of ~14MB | ||
# Application classes can be create a separate cache layer with this as the base for further startup improvement | ||
|
||
RUN set -eux; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ | ||
SCC_SIZE="50m"; \ | ||
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \ | ||
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \ | ||
TOMCAT_CHECKSUM="0db27185d9fc3174f2c670f814df3dda8a008b89d1a38a5d96cbbe119767ebfb1cf0bce956b27954aee9be19c4a7b91f2579d967932207976322033a86075f98"; \ | ||
TOMCAT_DWNLD_URL="https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.35/bin/apache-tomcat-9.0.35.tar.gz"; \ | ||
\ | ||
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \ | ||
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \ | ||
echo "${TOMCAT_CHECKSUM} *${DOWNLOAD_PATH_TOMCAT}/tomcat.tar.gz" | sha512sum -c -; \ | ||
tar -xf "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz -C "${INSTALL_PATH_TOMCAT}" --strip-components=1; \ | ||
rm -rf "${DOWNLOAD_PATH_TOMCAT}"; \ | ||
\ | ||
java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 15; \ | ||
FULL=$( (java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
DST_CACHE=$(java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,destroy 2>&1 || true); \ | ||
SCC_SIZE=$(echo $SCC_SIZE | sed 's/.$//'); \ | ||
SCC_SIZE=$(awk "BEGIN {print int($SCC_SIZE * $FULL / 100.0)}"); \ | ||
[ "${SCC_SIZE}" -eq 0 ] && SCC_SIZE=1; \ | ||
SCC_SIZE="${SCC_SIZE}m"; \ | ||
java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ | ||
\ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 5; \ | ||
FULL=$( (java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
echo "SCC layer is $FULL% full."; \ | ||
rm -rf "${INSTALL_PATH_TOMCAT}"; \ | ||
if [ -d "/opt/java/.scc" ]; then \ | ||
chmod -R 0777 /opt/java/.scc; \ | ||
fi; \ | ||
\ | ||
echo "SCC generation phase completed"; | ||
|
||
CMD ["jshell"] |
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 |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# (C) Copyright IBM Corporation 2021 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi:8.4 | ||
|
||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
RUN dnf install -y tzdata openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar \ | ||
&& dnf update -y; dnf clean all | ||
|
||
LABEL name="IBM Semeru Runtime " \ | ||
vendor="International Business Machines Corporation" \ | ||
version="jdk-11.0.12+7_openj9-0.27.0" \ | ||
release="11" \ | ||
run="docker run --rm -ti <image_name:tag> /bin/bash" \ | ||
summary="IBM Semeru Runtime Docker Image for OpenJDK with openj9 and ubi" \ | ||
description="For more information on this image please see https://github.com/ibmruntimes/openjdk-docker/blob/master/README.md" | ||
|
||
ENV JAVA_VERSION jdk-11.0.12+7_openj9-0.27.0 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(uname -m)"; \ | ||
case "${ARCH}" in \ | ||
amd64|x86_64) \ | ||
ESUM='4c2d776f69e3ff7d01cd57c0938b7a7f058264425faf18e3708b905e93f915c4'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz'; \ | ||
;; \ | ||
ppc64el|ppc64le) \ | ||
ESUM='7d49a5b29a84831526f7bffaaee399ac9a26d05712ac4b9cb7ca0a370ed3f020'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz'; \ | ||
;; \ | ||
s390x) \ | ||
ESUM='991f8df53079378782b9de3bbfd4c52a19920ea9ba90e9a54c871ce47b599cdb'; \ | ||
BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.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" | ||
ENV JAVA_TOOL_OPTIONS="-XX:+IgnoreUnrecognizedVMOptions -XX:+IdleTuningGcOnIdle -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal" | ||
|
||
# Create OpenJ9 SharedClassCache (SCC) for bootclasses to improve the java startup. | ||
# Downloads and runs tomcat to generate SCC for bootclasses at /opt/java/.scc/openj9_system_scc | ||
# Does a dry-run and calculates the optimal cache size and recreates the cache with the appropriate size. | ||
# With SCC, OpenJ9 startup is improved ~50% with an increase in image size of ~14MB | ||
# Application classes can be create a separate cache layer with this as the base for further startup improvement | ||
|
||
RUN set -eux; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ | ||
SCC_SIZE="50m"; \ | ||
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \ | ||
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \ | ||
TOMCAT_CHECKSUM="0db27185d9fc3174f2c670f814df3dda8a008b89d1a38a5d96cbbe119767ebfb1cf0bce956b27954aee9be19c4a7b91f2579d967932207976322033a86075f98"; \ | ||
TOMCAT_DWNLD_URL="https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.35/bin/apache-tomcat-9.0.35.tar.gz"; \ | ||
\ | ||
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \ | ||
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \ | ||
echo "${TOMCAT_CHECKSUM} *${DOWNLOAD_PATH_TOMCAT}/tomcat.tar.gz" | sha512sum -c -; \ | ||
tar -xf "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz -C "${INSTALL_PATH_TOMCAT}" --strip-components=1; \ | ||
rm -rf "${DOWNLOAD_PATH_TOMCAT}"; \ | ||
\ | ||
java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 15; \ | ||
FULL=$( (java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
DST_CACHE=$(java -Xshareclasses:name=dry_run_scc,cacheDir=/opt/java/.scc,destroy 2>&1 || true); \ | ||
SCC_SIZE=$(echo $SCC_SIZE | sed 's/.$//'); \ | ||
SCC_SIZE=$(awk "BEGIN {print int($SCC_SIZE * $FULL / 100.0)}"); \ | ||
[ "${SCC_SIZE}" -eq 0 ] && SCC_SIZE=1; \ | ||
SCC_SIZE="${SCC_SIZE}m"; \ | ||
java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal,createLayer -Xscmx$SCC_SIZE -version; \ | ||
unset OPENJ9_JAVA_OPTIONS; \ | ||
\ | ||
export OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,bootClassesOnly,nonFatal"; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/startup.sh; \ | ||
sleep 5; \ | ||
"${INSTALL_PATH_TOMCAT}"/bin/shutdown.sh -force; \ | ||
sleep 5; \ | ||
FULL=$( (java -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,printallStats 2>&1 || true) | awk '/^Cache is [0-9.]*% .*full/ {print substr($3, 1, length($3)-1)}'); \ | ||
echo "SCC layer is $FULL% full."; \ | ||
rm -rf "${INSTALL_PATH_TOMCAT}"; \ | ||
if [ -d "/opt/java/.scc" ]; then \ | ||
chmod -R 0777 /opt/java/.scc; \ | ||
fi; \ | ||
\ | ||
echo "SCC generation phase completed"; | ||
|
||
CMD ["jshell"] |
Oops, something went wrong.