forked from AdoptOpenJDK/openjdk-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerfile_functions.sh
executable file
·753 lines (660 loc) · 20.8 KB
/
dockerfile_functions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
#!/usr/bin/env bash
# shellcheck disable=SC1083,SC2086,SC2154
#
# 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.
#
# Generate the common license and copyright header
print_legal() {
cat > "$1" <<-EOI
# ------------------------------------------------------------------------------
# NOTE: THIS DOCKERFILE IS GENERATED VIA "build_latest.sh" or "update_multiarch.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
# ------------------------------------------------------------------------------
#
# 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.
#
EOI
}
# Print the supported Ubuntu OS
print_ubuntu_ver() {
os_version="18.04"
cat >> "$1" <<-EOI
FROM ubuntu:${os_version}
EOI
}
# Print the supported Debian OS
print_debian_ver() {
os_version="buster"
cat >> "$1" <<-EOI
FROM debian:${os_version}
EOI
}
# Print the supported Debian OS
print_debianslim_ver() {
os_version="buster-slim"
cat >> "$1" <<-EOI
FROM debian:${os_version}
EOI
}
print_ubi_ver() {
os_version="8.2"
cat >> "$1" <<-EOI
FROM registry.access.redhat.com/ubi8/ubi:${os_version}
EOI
}
print_ubi-minimal_ver() {
os_version="8.2"
cat >> "$1" <<-EOI
FROM registry.access.redhat.com/ubi8/ubi-minimal:${os_version}
EOI
}
print_centos_ver() {
os_version="7"
cat >> "$1" <<-EOI
FROM centos:${os_version}
EOI
}
print_clefos_ver() {
os_version="7"
cat >> "$1" <<-EOI
FROM clefos:${os_version}
EOI
}
print_leap_ver() {
os_version="15.2"
cat >> "$1" <<-EOI
FROM opensuse/leap:${os_version}
EOI
}
print_tumbleweed_ver() {
os_version="latest"
cat >> "$1" <<-EOI
FROM opensuse/tumbleweed:${os_version}
EOI
}
# Print the supported Windows OS
print_windows_ver() {
os=$4
case $os in
*ltsc2019) os_version="ltsc2019" ;;
*1909) os_version="1909" ;;
*ltsc2016) os_version="ltsc2016" ;;
*1809) os_version="1809" ;;
esac
servertype=$(echo "$file" | cut -f4 -d"/")
nanoserver_pat="nanoserver.*"
if [[ "$servertype" =~ ${nanoserver_pat} ]]; then
cat >> "$1" <<-EOI
FROM mcr.microsoft.com/powershell:nanoserver-${os_version}
EOI
else
cat >> "$1" <<-EOI
FROM mcr.microsoft.com/windows/servercore:${os_version}
EOI
fi
}
# Print the supported Alpine OS
print_alpine_ver() {
cat >> "$1" <<-EOI
FROM alpine:3.12
EOI
}
# Print the locale and language
print_lang_locale() {
os=$2
if [ "$os" != "windows" ]; then
cat >> "$1" <<-EOI
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
EOI
fi
}
# Select the ubuntu OS packages
print_ubuntu_pkg() {
cat >> "$1" <<'EOI'
RUN apt-get update \
&& apt-get install -y --no-install-recommends tzdata curl ca-certificates fontconfig locales \
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
EOI
}
print_debian_pkg() {
print_ubuntu_pkg "$1"
}
print_debianslim_pkg() {
print_ubuntu_pkg "$1"
}
print_windows_pkg() {
servertype=$(echo "$file" | cut -f4 -d"/")
nanoserver_pat="nanoserver.*"
if [[ "$servertype" =~ ${nanoserver_pat} ]]; then
cat >> "$1" <<'EOI'
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
EOI
else
cat >> "$1" <<'EOI'
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
EOI
fi
}
# Select the alpine OS packages.
# Install GNU glibc as this OpenJDK build is compiled against glibc and not musl.
print_alpine_pkg() {
cat >> "$1" <<'EOI'
RUN apk add --no-cache tzdata --virtual .build-deps curl binutils zstd \
&& GLIBC_VER="2.31-r0" \
&& ALPINE_GLIBC_REPO="https://github.com/sgerrand/alpine-pkg-glibc/releases/download" \
&& GCC_LIBS_URL="https://archive.archlinux.org/packages/g/gcc-libs/gcc-libs-10.1.0-2-x86_64.pkg.tar.zst" \
&& GCC_LIBS_SHA256="f80320a03ff73e82271064e4f684cd58d7dbdb07aa06a2c4eea8e0f3c507c45c" \
&& ZLIB_URL="https://archive.archlinux.org/packages/z/zlib/zlib-1%3A1.2.11-3-x86_64.pkg.tar.xz" \
&& ZLIB_SHA256=17aede0b9f8baa789c5aa3f358fbf8c68a5f1228c5e6cba1a5dd34102ef4d4e5 \
&& curl -LfsS https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub \
&& SGERRAND_RSA_SHA256="823b54589c93b02497f1ba4dc622eaef9c813e6b0f0ebbb2f771e32adf9f4ef2" \
&& echo "${SGERRAND_RSA_SHA256} */etc/apk/keys/sgerrand.rsa.pub" | sha256sum -c - \
&& curl -LfsS ${ALPINE_GLIBC_REPO}/${GLIBC_VER}/glibc-${GLIBC_VER}.apk > /tmp/glibc-${GLIBC_VER}.apk \
&& apk add --no-cache /tmp/glibc-${GLIBC_VER}.apk \
&& curl -LfsS ${ALPINE_GLIBC_REPO}/${GLIBC_VER}/glibc-bin-${GLIBC_VER}.apk > /tmp/glibc-bin-${GLIBC_VER}.apk \
&& apk add --no-cache /tmp/glibc-bin-${GLIBC_VER}.apk \
&& curl -Ls ${ALPINE_GLIBC_REPO}/${GLIBC_VER}/glibc-i18n-${GLIBC_VER}.apk > /tmp/glibc-i18n-${GLIBC_VER}.apk \
&& apk add --no-cache /tmp/glibc-i18n-${GLIBC_VER}.apk \
&& /usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "$LANG" || true \
&& echo "export LANG=$LANG" > /etc/profile.d/locale.sh \
&& curl -LfsS ${GCC_LIBS_URL} -o /tmp/gcc-libs.tar.zst \
&& echo "${GCC_LIBS_SHA256} */tmp/gcc-libs.tar.zst" | sha256sum -c - \
&& mkdir /tmp/gcc \
&& zstd -d /tmp/gcc-libs.tar.zst --output-dir-flat /tmp \
&& tar -xf /tmp/gcc-libs.tar -C /tmp/gcc \
&& mv /tmp/gcc/usr/lib/libgcc* /tmp/gcc/usr/lib/libstdc++* /usr/glibc-compat/lib \
&& strip /usr/glibc-compat/lib/libgcc_s.so.* /usr/glibc-compat/lib/libstdc++.so* \
&& curl -LfsS ${ZLIB_URL} -o /tmp/libz.tar.xz \
&& echo "${ZLIB_SHA256} */tmp/libz.tar.xz" | sha256sum -c - \
&& mkdir /tmp/libz \
&& tar -xf /tmp/libz.tar.xz -C /tmp/libz \
&& mv /tmp/libz/usr/lib/libz.so* /usr/glibc-compat/lib \
&& apk del --purge .build-deps glibc-i18n \
&& rm -rf /tmp/*.apk /tmp/gcc /tmp/gcc-libs.tar* /tmp/libz /tmp/libz.tar.xz /var/cache/apk/*
EOI
}
# Select the ubi OS packages.
print_ubi_pkg() {
cat >> "$1" <<'EOI'
RUN dnf install -y tzdata openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar \
&& dnf update -y; dnf clean all
EOI
}
# Select the ubi OS packages.
print_ubi-minimal_pkg() {
cat >> "$1" <<'EOI'
RUN microdnf install -y tzdata openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar \
&& microdnf update -y; microdnf clean all
EOI
}
# Select the CentOS packages.
print_centos_pkg() {
cat >> "$1" <<'EOI'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum update -y; yum clean all
EOI
}
# Select the ClefOS packages.
print_clefos_pkg() {
print_centos_pkg "$1"
}
# Select the Leap packages.
print_leap_pkg() {
cat >> "$1" <<'EOI'
RUN zypper install --no-recommends -y timezone openssl curl ca-certificates fontconfig gzip tar \
&& zypper update -y; zypper clean --all
EOI
}
# Select the Tumbleweed packages.
print_tumbleweed_pkg() {
print_leap_pkg "$1"
}
# Print the Java version that is being installed here
print_env() {
# shellcheck disable=SC2154
shasums="${package}"_"${vm}"_"${version}"_"${build}"_sums
if [ -z "${arch}" ]; then
jverinfo="${shasums}[version]"
else
jverinfo="${shasums}[version-${arch}]"
fi
# shellcheck disable=SC1083,SC2086 # TODO not sure about intention here
eval jver=\${$jverinfo}
jver="${jver}" # to satifsy shellcheck SC2154
# Print additional label for UBI alone
if [ "${os}" == "ubi-minimal" ] || [ "${os}" == "ubi" ]; then
cat >> "$1" <<-EOI
LABEL name="AdoptOpenJDK Java" \\
vendor="AdoptOpenJDK" \\
version="${jver}" \\
release="${version}" \\
run="docker run --rm -ti <image_name:tag> /bin/bash" \\
summary="AdoptOpenJDK Docker Image for OpenJDK with ${vm} and ${os}" \\
description="For more information on this image please see https://github.com/AdoptOpenJDK/openjdk-docker/blob/master/README.md"
EOI
fi
cat >> "$1" <<-EOI
ENV JAVA_VERSION ${jver}
EOI
}
# OS independent portion (Works for both Alpine and Ubuntu)
print_java_install_pre() {
pkg=$2
bld=$3
btype=$4
reldir="openjdk${version}";
if [ "${vm}" != "hotspot" ]; then
reldir="${reldir}-${vm}";
fi
supported_arches=$(get_arches "${shasums}" | sort)
for sarch in ${supported_arches}
do
if [ "${sarch}" == "aarch64" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" aarch64);
cat >> "$1" <<-EOI
aarch64|arm64) \\
ESUM='$(sarray="${shasums}[aarch64]"; eval esum=\${$sarray}; echo "${esum}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "armv7l" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" arm);
cat >> "$1" <<-EOI
armhf|armv7l) \\
ESUM='$(sarray="${shasums}[armv7l]"; eval esum=\${$sarray}; echo "${esum}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "ppc64le" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" ppc64le);
cat >> "$1" <<-EOI
ppc64el|ppc64le) \\
ESUM='$(sarray="${shasums}[ppc64le]"; eval esum=\${$sarray}; echo "${esum}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "s390x" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" s390x);
cat >> "$1" <<-EOI
s390x) \\
ESUM='$(sarray="${shasums}[s390x]"; eval esum=\${$sarray}; echo "${esum}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "x86_64" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" x64);
cat >> "$1" <<-EOI
amd64|x86_64) \\
ESUM='$(sarray="${shasums}[x86_64]"; eval esum=\${$sarray}; echo "${esum}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
fi
done
cat >> "$1" <<-EOI
*) \\
echo "Unsupported arch: \${ARCH}"; \\
exit 1; \\
;; \\
esac; \\
EOI
cat >> "$1" <<'EOI'
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; \
EOI
}
print_java_install_post() {
cat >> "$1" <<-EOI
rm -rf /tmp/openjdk.tar.gz;
EOI
}
# Call the script to create the slim package for Ubuntu
# Install binutils for this phase as we need the "strip" command
# Uninstall once done
print_ubuntu_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
apt-get update; apt-get install -y --no-install-recommends binutils; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
apt-get remove -y binutils; \\
rm -rf /var/lib/apt/lists/*; \\
EOI
}
print_debianslim_package() {
print_ubuntu_slim_package "$1"
}
# Call the script to create the slim package for Windows
print_windowsservercore_slim_package() {
cat >> "$1" <<-EOI
& C:/ProgramData/Java/slim-java.ps1 (Get-ChildItem -Path 'C:\\Program Files\\AdoptOpenJDK')[0].FullName; \\
EOI
}
print_nanoserver_slim_package() {
cat >> "$1" <<-EOI
& C:/ProgramData/Java/slim-java.ps1 C:\\openjdk-$2; \\
EOI
}
# Call the script to create the slim package for Alpine
# Install binutils for this phase as we need the "strip" command
# Uninstall once done
print_alpine_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
apk add --no-cache --virtual .build-deps bash binutils; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
apk del --purge .build-deps; \\
rm -rf /var/cache/apk/*; \\
EOI
}
# Print the main RUN command that installs Java on ubuntu.
print_ubuntu_java_install() {
pkg=$2
bld=$3
btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(dpkg --print-architecture)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}"
if [ "${btype}" == "slim" ]; then
print_ubuntu_slim_package "$1"
fi
print_java_install_post "$1"
}
print_debian_java_install() {
print_ubuntu_java_install "$1" "$2" "$3" "$4"
}
print_debianslim_java_install() {
print_ubuntu_java_install "$1" "$2" "$3" "$4"
}
print_windows_java_install_post() {
servertype="$2"
if [ "${servertype}" == "windowsservercore" ]; then
cat >> "$1" <<-EOI
Write-Host 'Removing openjdk.msi ...'; \\
Remove-Item openjdk.msi -Force
EOI
else
cat >> "$1" <<-EOI
Write-Host 'Removing openjdk.zip ...'; \\
Remove-Item openjdk.zip -Force
USER ContainerUser
EOI
fi
}
# Print the main RUN command that installs Java on ubuntu.
print_windows_java_install() {
pkg=$2
bld=$3
btype=$4
servertype=$(echo -n "${file}" | cut -f4 -d"/" | cut -f1 -d"-" | head -qn1)
version=$(echo -n "${file}" | cut -f1 -d "/" | head -qn1)
if [ "${servertype}" == "windowsservercore" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" windows-amd);
ESUM=$(sarray="${shasums}[windows-amd]"; eval esum=\${$sarray}; echo "${esum}");
BINARY_URL=$(get_v3_installer_url "${JAVA_URL}");
cat >> "$1" <<-EOI
RUN Write-Host ('Downloading ${BINARY_URL} ...'); \\
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \\
wget ${BINARY_URL} -O 'openjdk.msi'; \\
Write-Host ('Verifying sha256 (${ESUM}) ...'); \\
if ((Get-FileHash openjdk.msi -Algorithm sha256).Hash -ne '${ESUM}') { \\
Write-Host 'FAILED!'; \\
exit 1; \\
}; \\
\\
New-Item -ItemType Directory -Path C:\temp | Out-Null; \\
\\
Write-Host 'Installing using MSI ...'; \\
Start-Process -FilePath "msiexec.exe" -ArgumentList '/i', 'openjdk.msi', '/L*V', 'C:\temp\OpenJDK.log', \\
'/quiet', 'ADDLOCAL=FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome' -Wait -Passthru; \\
Remove-Item -Path C:\temp -Recurse | Out-Null; \\
EOI
else
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" windows-nano);
# shellcheck disable=SC1083
ESUM=$(sarray="${shasums}[windows-nano]"; eval esum=\${"$sarray"}; echo "${esum}");
BINARY_URL=$(get_v3_binary_url "${JAVA_URL}");
cat >> "$1" <<-EOI
USER ContainerAdministrator
RUN Write-Host ('Downloading ${BINARY_URL} ...'); \\
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \\
Invoke-WebRequest -Uri ${BINARY_URL} -O 'openjdk.zip'; \\
Write-Host ('Verifying sha256 (${ESUM}) ...'); \\
if ((Get-FileHash openjdk.zip -Algorithm sha256).Hash -ne '${ESUM}') { \\
Write-Host 'FAILED!'; \\
exit 1; \\
}; \\
\\
Write-Host 'Expanding Zip ...'; \\
Expand-Archive -Path openjdk.zip -DestinationPath C:\\ ; \\
\$jdkDirectory=(Get-ChildItem -Directory | ForEach-Object { \$_.FullName } | Select-String 'jdk'); \\
Move-Item -Path \$jdkDirectory C:\\openjdk-${version}; \\
EOI
fi
if [ "${btype}" == "slim" ]; then
print_"${servertype}"_slim_package "$1" "${version}"
fi
print_windows_java_install_post "$1" "${servertype}"
}
# Print the main RUN command that installs Java on alpine.
print_alpine_java_install() {
pkg=$2
bld=$3
btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
apk add --no-cache --virtual .fetch-deps curl; \\
ARCH="\$(apk --print-arch)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}"
if [ "${btype}" == "slim" ]; then
print_alpine_slim_package "$1"
fi
cat >> "$1" <<-EOI
apk del --purge .fetch-deps; \\
rm -rf /var/cache/apk/*; \\
EOI
print_java_install_post "$1"
}
# Print the main RUN command that installs Java on ubi
print_ubi_java_install() {
pkg=$2
bld=$3
btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}"
print_java_install_post "$1"
}
# Print the main RUN command that installs Java on ubi-minimal
print_ubi-minimal_java_install() {
print_ubi_java_install "$1" "$2" "$3" "$4"
}
# Print the main RUN command that installs Java on CentOS
print_centos_java_install() {
pkg=$2
bld=$3
btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}"
print_java_install_post "$1"
}
# Print the main RUN command that installs Java on ClefOS
print_clefos_java_install() {
print_centos_java_install "$1" "$2" "$3" "$4"
}
# Print the main RUN command that installs Java on Leap
print_leap_java_install() {
pkg=$2
bld=$3
btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}"
print_java_install_post "$1"
}
# Print the main RUN command that installs Java on Tumbleweed
print_tumbleweed_java_install() {
print_leap_java_install "$1" "$2" "$3" "$4"
}
# Print the JAVA_HOME and PATH.
# Currently Java is installed at a fixed path "/opt/java/openjdk"
print_java_env() {
# e.g 11 or 8
version=$(echo "$file" | cut -f1 -d"/")
os=$4
if [ "$os" != "windows" ]; then
cat >> "$1" <<-EOI
ENV JAVA_HOME=${jhome} \\
PATH="${jhome}/bin:\$PATH"
EOI
else
servertype=$(echo "$file" | cut -f4 -d"/" | head -qn1)
nanoserver_pat="nanoserver.*"
if [[ "$servertype" =~ ${nanoserver_pat} ]]; then
cat >> "$1" <<-EOI
ENV JAVA_HOME=C:\\\\openjdk-${version} \\
ProgramFiles="C:\\\\Program Files" \\
WindowsPATH="C:\\\\Windows\\\\system32;C:\\\\Windows"
ENV PATH="\${WindowsPATH};\${ProgramFiles}\\\\PowerShell;\${JAVA_HOME}\\\\bin"
EOI
fi
fi
}
# Turn on JVM specific optimization flags.
# Hotspot container support = https://bugs.openjdk.java.net/browse/JDK-8189497
# OpenJ9 container support = https://www.eclipse.org/openj9/docs/xxusecontainersupport/
# OpenJ9 Idle tuning = https://www.eclipse.org/openj9/docs/xxidletuninggconidle/
print_java_options() {
case ${vm} in
hotspot)
case ${version} in
9)
JOPTS="-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap";
;;
esac
;;
openj9)
JOPTS="-XX:+IgnoreUnrecognizedVMOptions -XX:+UseContainerSupport -XX:+IdleTuningCompactOnIdle -XX:+IdleTuningGcOnIdle";
;;
esac
if [ -n "${JOPTS}" ]; then
cat >> "$1" <<-EOI
ENV JAVA_TOOL_OPTIONS="${JOPTS}"
EOI
fi
}
# For slim builds copy the slim script and related config files.
copy_slim_script() {
if [ "${btype}" == "slim" ]; then
if [ "${os}" == "windows" ]; then
cat >> "$1" <<-EOI
COPY slim-java* C:/ProgramData/Java/
EOI
else
cat >> "$1" <<-EOI
COPY slim-java* /usr/local/bin/
EOI
fi
fi
}
print_cmd() {
# for version > 8, set CMD["jshell"] in the Dockerfile
above_8="^(9|[1-9][0-9]+)$"
if [[ "${version}" =~ ${above_8} && "${package}" == "jdk" ]]; then
cat >> "$1" <<-EOI
CMD ["jshell"]
EOI
fi
}
copy_scc_script() {
if [ "${vm}" == "openj9" ]; then
cat >> "$1" <<-EOI
COPY generate_openj9_scc.sh /scripts/
EOI
fi
}
run_scc_gen() {
if [ "${vm}" == "openj9" ]; then
cat >> "$1" <<-EOI
RUN /scripts/generate_openj9_scc.sh
ENV OPENJ9_JAVA_OPTIONS="-Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal"
EOI
fi
}
# Generate the dockerfile for a given build, build_type and OS
generate_dockerfile() {
file=$1
pkg=$2
bld=$3
btype=$4
case $5 in
windows*|nanoserver*)
os_family=windows
os=$5 ;;
*)
os_family=$5
os=$5 ;;
esac
jhome="/opt/java/openjdk"
mkdir -p "$(dirname "${file}")" 2>/dev/null
echo
echo -n "Writing ${file} ... "
print_legal "${file}";
print_"${os_family}"_ver "${file}" "${bld}" "${btype}" "${os}";
print_lang_locale "${file}" "${os_family}";
print_"${os_family}"_pkg "${file}";
print_env "${file}" "${bld}" "${btype}";
copy_slim_script "${file}";
print_"${os_family}"_java_install "${file}" "${pkg}" "${bld}" "${btype}";
print_java_env "${file}" "${bld}" "${btype}" "${os_family}";
print_java_options "${file}" "${bld}" "${btype}";
copy_scc_script "${file}";
run_scc_gen "${file}";
print_cmd "${file}";
echo "done"
echo
# Reset os back to the value of disto
os_family="$os"
}