-
Notifications
You must be signed in to change notification settings - Fork 236
/
dockerfile_functions.sh
executable file
·958 lines (840 loc) · 28.3 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
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
#!/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() {
if [ ${current_arch} == "armv7l" ]; then
os_version="18.04"
else
os_version="20.04"
fi
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.4"
cat >> "$1" <<-EOI
FROM registry.access.redhat.com/ubi8/ubi:${os_version}
EOI
}
print_ubi-minimal_ver() {
os_version="8.4"
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.3"
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() {
local os=$4
case $os in
*ltsc2019) os_version="ltsc2019" ;;
*1909) os_version="1909" ;;
*ltsc2016) os_version="ltsc2016" ;;
*1809) os_version="1809" ;;
*20h2) os_version="20H2" ;;
esac
servertype=$(echo "$file" | cut -f4 -d"/")
nanoserver_pat="nanoserver.*"
if [[ "$servertype" =~ ${nanoserver_pat} ]]; then
cat >> "$1" <<-EOI
FROM mcr.microsoft.com/windows/servercore:${os_version} as installer
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.14
EOI
}
# Print the locale and language
print_lang_locale() {
local 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 \
&& DEBIAN_FRONTEND=noninteractive 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() {
cat >> "$1" <<'EOI'
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
EOI
}
# Select the alpine OS packages.
# Install GNU glibc as this OpenJDK build is compiled against glibc and not musl.
print_alpine_pkg() {
local osfamily=$2
if [ "${osfamily}" == "alpine-linux" ]; then
print_alpine_musl_pkg "$1" "$2"
else
print_alpine_glibc_pkg "$1" "$2"
fi
}
print_alpine_glibc_pkg() {
cat >> "$1" <<'EOI'
RUN apk add --no-cache tzdata --virtual .build-deps curl binutils zstd \
&& GLIBC_VER="2.33-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 alpine OS musl based packages.
print_alpine_musl_pkg() {
cat >> "$1" <<'EOI'
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \
&& rm -rf /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() {
local osfamily=$2
local os=$3
# shellcheck disable=SC2154
shasums="${package}"_"${vm}"_"${version}"_"${build}"_sums
jverinfo="${shasums}[version]"
# 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() {
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
local reldir="openjdk${version}";
if [ "${vm}" != "hotspot" ]; then
reldir="${reldir}-${vm}";
fi
# First get the arches for which the builds are available as per shasums file
local sup_arches_for_build=$(get_arches "${shasums}" | sort | uniq)
# Next, check the arches that are supported for the underlying OS
local sup_arches_for_os=$(parse_vm_entry "${vm}" "${version}" "${pkg}" "${os}" "Architectures:")
# Now the actual arches are the intersection of the above two
local merge_arches="${sup_arches_for_build} ${sup_arches_for_os}"
local supported_arches=$(echo ${merge_arches} | tr ' ' '\n' | sort | uniq -d)
for sarch in ${supported_arches}
do
if [ "${sarch}" == "aarch64" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" aarch64 "${osfamily}");
cat >> "$1" <<-EOI
aarch64|arm64) \\
ESUM='$(get_shasum "${shasums}" aarch64 "${osfamily}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "armv7l" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" arm "${osfamily}");
cat >> "$1" <<-EOI
armhf|armv7l) \\
ESUM='$(get_shasum "${shasums}" armv7l "${osfamily}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "ppc64le" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" ppc64le "${osfamily}");
cat >> "$1" <<-EOI
ppc64el|ppc64le) \\
ESUM='$(get_shasum "${shasums}" ppc64le "${osfamily}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
;; \\
EOI
elif [ "${sarch}" == "s390x" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" s390x "${osfamily}");
cat >> "$1" <<-EOI
s390x) \\
ESUM='$(get_shasum "${shasums}" s390x "${osfamily}")'; \\
BINARY_URL='$(get_v3_binary_url "${JAVA_URL}")'; \\
EOI
# Ubuntu 20.04 has a newer version of libffi (libffi7)
# whereas hotspot has been built on libffi6 and fails if that is not avaialble
# Workaround is to install libffi6 on ubuntu / hotspot / s390x
if [ "${version}" == "8" ] && [ "${vm}" == "hotspot" ] && [ "${os}" == "ubuntu" ]; then
cat >> "$1" <<'EOI'
LIBFFI_SUM='05e456a2e8ad9f20db846ccb96c483235c3243e27025c3e8e8e358411fd48be9'; \
LIBFFI_URL='http://launchpadlibrarian.net/354371408/libffi6_3.2.1-8_s390x.deb'; \
curl -LfsSo /tmp/libffi6.deb ${LIBFFI_URL}; \
echo "${LIBFFI_SUM} /tmp/libffi6.deb" | sha256sum -c -; \
apt-get install -y --no-install-recommends /tmp/libffi6.deb; \
rm -rf /tmp/libffi6.deb; \
EOI
fi
cat >> "$1" <<-EOI
;; \\
EOI
elif [ "${sarch}" == "x86_64" ]; then
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" x64 "${osfamily}");
cat >> "$1" <<-EOI
amd64|x86_64) \\
ESUM='$(get_shasum "${shasums}" x86_64 "${osfamily}")'; \\
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
}
# Call the script to create the slim package for Ubi
print_ubi_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
dnf install -y binutils; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
dnf remove -y binutils; \\
dnf clean all; \\
EOI
}
# Call the script to create the slim package for Ubi-minimal
print_ubi-minimal_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
microdnf install -y binutils; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
microdnf remove -y binutils; \\
microdnf clean all; \\
EOI
}
# Call the script to create the slim package for leap & tumbleweed
print_leap_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
zypper install --no-recommends -y binutils; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
zypper remove -y binutils; \\
zypper clean --all; \\
EOI
}
# Call the script to create the slim package for Centos & clefos
print_centos_slim_package() {
cat >> "$1" <<-EOI
export PATH="${jhome}/bin:\$PATH"; \\
/usr/local/bin/slim-java.sh ${jhome}; \\
EOI
}
# Print the main RUN command that installs Java on ubuntu.
print_ubuntu_java_install() {
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(dpkg --print-architecture)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}"
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" "$5" "$6"
}
print_debianslim_java_install() {
print_ubuntu_java_install "$1" "$2" "$3" "$4" "$5" "$6"
}
print_windows_java_install_post() {
local servertype="$2"
local version="$3"
local os=$4
case $os in
*20h2) os_version="20H2" ;;
*ltsc2019) os_version="ltsc2019" ;;
*1909) os_version="1909" ;;
*ltsc2016) os_version="ltsc2016" ;;
*1809) os_version="1809" ;;
esac
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
FROM mcr.microsoft.com/windows/nanoserver:${os_version}
USER ContainerAdministrator
# Set JAVA_HOME and PATH environment variables
RUN setx /M JAVA_HOME "C:\\\\openjdk-${version}" & \\
setx /M PATH "%PATH%;%JAVA_HOME%\\\\bin"
COPY --from=installer ["/openjdk-${version}", "/openjdk-${version}"]
USER ContainerUser
EOI
fi
}
# Print the main RUN command that installs Java on ubuntu.
print_windows_java_install() {
local pkg=$2
local bld=$3
local btype=$4
local os=$5
local servertype=$(echo -n "${file}" | cut -f4 -d"/" | cut -f1 -d"-" | head -qn1)
local serverversion=$(echo -n "${file}" | cut -f4 -d"/" | cut -f2 -d"-" | head -qn1)
local 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 windows);
ESUM=$(get_shasum "${shasums}" windows-amd "${osfamily}");
BINARY_URL=$(get_v3_installer_url "${JAVA_URL}");
DOWNLOAD_COMMAND="curl.exe -LfsSo openjdk.msi ${BINARY_URL}"
if [ "${serverversion}" == "ltsc2016" ]; then
DOWNLOAD_COMMAND="[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; Invoke-WebRequest -Uri ${BINARY_URL} -O 'openjdk.msi'"
fi
cat >> "$1" <<-EOI
RUN Write-Host ('Downloading ${BINARY_URL} ...'); \\
${DOWNLOAD_COMMAND} ; \\
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 ...'; \\
\$proc = Start-Process -FilePath "msiexec.exe" -ArgumentList '/i', 'openjdk.msi', '/L*V', 'C:\temp\OpenJDK.log', \\
'/quiet', 'ADDLOCAL=FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome' -Wait -Passthru; \\
\$proc.WaitForExit() ; \\
if (\$proc.ExitCode -ne 0) { \\
Write-Host 'FAILED installing MSI!' ; \\
exit 1; \\
}; \\
\\
Remove-Item -Path C:\temp -Recurse | Out-Null; \\
EOI
else
JAVA_URL=$(get_v3_url feature_releases "${bld}" "${vm}" "${pkg}" windows-nano windows);
# shellcheck disable=SC1083
ESUM=$(get_shasum "${shasums}" windows-nano "${osfamily}");
BINARY_URL=$(get_v3_binary_url "${JAVA_URL}");
cat >> "$1" <<-EOI
RUN Write-Host ('Downloading ${BINARY_URL} ...'); \\
curl.exe -LfsSo openjdk.zip ${BINARY_URL} ; \\
Write-Host ('Verifying sha256 (${ESUM}) ...'); \\
if ((Get-FileHash openjdk.zip -Algorithm sha256).Hash -ne '${ESUM}') { \\
Write-Host 'FAILED!'; \\
exit 1; \\
}; \\
\\
Write-Host 'Expanding Zip ...'; \\
tar.exe -xf openjdk.zip -C 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}" "${version}" "${os}"
}
# Print the main RUN command that installs Java on alpine.
print_alpine_java_install() {
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
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}" "${osfamily}" "${os}"
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() {
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}"
if [ "${btype}" == "slim" ]; then
if [ "${os}" == "ubi" ]; then
print_ubi_slim_package "$1"
elif [ "${os}" == "ubi-minimal" ]; then
print_ubi-minimal_slim_package "$1"
fi
fi
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" "$5" "$6"
}
# Print the main RUN command that installs Java on CentOS
print_centos_java_install() {
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}"
if [ "${btype}" == "slim" ]; then
print_centos_slim_package "$1"
fi
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" "$5" "$6"
}
# Print the main RUN command that installs Java on Leap
print_leap_java_install() {
local pkg=$2
local bld=$3
local btype=$4
cat >> "$1" <<-EOI
RUN set -eux; \\
ARCH="\$(uname -m)"; \\
case "\${ARCH}" in \\
EOI
print_java_install_pre "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}"
if [ "${btype}" == "slim" ]; then
print_leap_slim_package "$1"
fi
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" "$5" "$6"
}
# 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
local version=$(echo "$file" | cut -f1 -d"/")
local 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};\${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)
case ${os} in
windows)
JOPTS="-XX:+IgnoreUnrecognizedVMOptions -XX:+IdleTuningGcOnIdle";
;;
*)
JOPTS="-XX:+IgnoreUnrecognizedVMOptions -XX:+IdleTuningGcOnIdle -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal";
;;
esac
;;
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 [ "${osfamily}" == "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
}
print_scc_gen() {
local vm=$2;
local osfamily=$3;
local os=$4;
if [[ "${vm}" == "openj9" && "${osfamily}" != "windows" ]]; then
cat >> "$1" <<'EOI'
# 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; \
EOI
if [[ "${os}" == "alpine" ]]; then
cat >> "$1" <<'EOI'
apk add --no-cache --virtual .scc-deps curl; \
EOI
fi
cat >> "$1" <<'EOI'
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; \
\
EOI
if [[ "${os}" == "alpine" ]]; then
cat >> "$1" <<'EOI'
apk del --purge .scc-deps; \
rm -rf /var/cache/apk/*; \
EOI
fi
cat >> "$1" <<'EOI'
echo "SCC generation phase completed";
EOI
fi
}
# Generate the dockerfile for a given build, build_type and OS
generate_dockerfile() {
local file=$1
local pkg=$2
local bld=$3
local btype=$4
local osfamily=$5
local os=$6
jhome="/opt/java/openjdk"
mkdir -p "$(dirname "${file}")" 2>/dev/null
echo
echo -n "Writing ${file} ... "
print_legal "${file}";
if [ "${osfamily}" == "windows" ]; then
print_"${osfamily}"_ver "${file}" "${bld}" "${btype}" "${os}";
print_lang_locale "${file}" "${osfamily}";
print_"${osfamily}"_pkg "${file}" "${osfamily}";
print_env "${file}" "${osfamily}" "${os}";
copy_slim_script "${file}";
print_"${osfamily}"_java_install "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}";
print_java_env "${file}" "${bld}" "${btype}" "${osfamily}";
print_java_options "${file}" "${bld}" "${btype}";
print_cmd "${file}";
else
print_"${os}"_ver "${file}" "${bld}" "${btype}" "${os}";
print_lang_locale "${file}" "${osfamily}";
print_"${os}"_pkg "${file}" "${osfamily}";
print_env "${file}" "${osfamily}" "${os}";
copy_slim_script "${file}";
print_"${os}"_java_install "${file}" "${pkg}" "${bld}" "${btype}" "${osfamily}" "${os}";
print_java_env "${file}" "${bld}" "${btype}" "${osfamily}";
print_java_options "${file}" "${bld}" "${btype}";
print_scc_gen "${file}" "${vm}" "${osfamily}" "${os}";
print_cmd "${file}";
fi
echo "done"
echo
}