aarch64
This commit is contained in:
24
dockerfile/jdk/aarch64/8/Dockerfile
Normal file
24
dockerfile/jdk/aarch64/8/Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
FROM openanolis/anolisos:8.10-GA-aarch64
|
||||
|
||||
|
||||
ADD Alibaba_Dragonwell_Extended_8.28.27_aarch64_linux.tar.gz /usr/local/java/
|
||||
ENV JAVA_HOME /usr/local/java/dragonwell-8.28.27
|
||||
ENV PATH $PATH:/usr/local/java/dragonwell-8.28.27/bin
|
||||
|
||||
COPY dumb-init /usr/bin/
|
||||
|
||||
RUN yum -y install curl openssh unzip ca-certificates tzdata wget bash glibc-langpack-zh\
|
||||
&& chmod +x /usr/bin/dumb-init \
|
||||
&& echo "Asia/Shanghai" > /etc/timezone \
|
||||
&& curl -o /opt/arthas-boot.jar https://arthas.aliyun.com/arthas-boot.jar \
|
||||
&& echo "export LC_ALL=zh_CN.utf8" >> /etc/profile \
|
||||
&& echo "export LC_CTYPE=zh_CN.utf8" >> /etc/profile \
|
||||
&& yum clean all \
|
||||
&& rm -rf /tmp/* /var/cache/yum/* \
|
||||
&& source /etc/profile
|
||||
|
||||
#setup language 解决中文乱码
|
||||
ENV LANG zh_CN.utf8
|
||||
ENV LC_ALL zh_CN.utf8
|
||||
|
||||
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
||||
10
dockerfile/jdk/地址
Normal file
10
dockerfile/jdk/地址
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
run-java.sh
|
||||
https://github.com/fabric8io-images/run-java-sh/releases
|
||||
|
||||
dump-init
|
||||
https://github.com/Yelp/dumb-init/releases
|
||||
|
||||
Alibaba Dragonwell
|
||||
阿里巴巴开源基于 OpenJDK 定制的生产级 JDK 发行版
|
||||
https://dragonwell-jdk.io/#/index
|
||||
Reference in New Issue
Block a user