This commit is contained in:
tkarbowski 2018-09-07 16:01:13 -05:00 коммит произвёл GitHub
Родитель 0600b01b44
Коммит 5ed0dd0a2e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 85 добавлений и 0 удалений

Просмотреть файл

@ -1 +1,29 @@
# This Zulu OpenJDK dockerfile and corresponding binary images are restricted
# for use solely with Java applications or Java application components
# that are being developed for deployment on Microsoft Azure or Azure Stack,
# and are not intended to be used for any other purpose.
FROM frolvlad/alpine-glibc
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN ZULU_PACK=ZULU_ARCH=zulu8.31.0.1-jdk8.0.181-linux_x64.tar.gz && \
INSTALL_DIR=/usr/lib/jvm && \
BIN_DIR=/usr/bin && \
MAN_DIR=/usr/share/man/man1 && \
ZULU_DIR=$( basename $ZULU_PACK .tar.gz ) && \
apk update && \
apk add --no-cache ca-certificates wget && \
update-ca-certificates && \
wget -q http://repos.azul.com/azure-only/zulu/packages/zulu-8/8u181/$ZULU_PACK && \
mkdir -p ${INSTALL_DIR} && \
tar -xf ./$ZULU_PACK -C /usr/lib/jvm/ && rm -f $ZULU_PACK && \
cd ${BIN_DIR} && \
find ${INSTALL_DIR}/${ZULU_DIR}/bin -type f -perm -a=x -exec ln -s {} . \; && \
mkdir -p ${MAN_DIR} && \
cd ${MAN_DIR} && \
find ${INSTALL_DIR}/${ZULU_DIR}/man/man1 -type f -name “*.1” -exec ln -s {} . \;

Просмотреть файл

@ -1 +1,13 @@
# This Zulu OpenJDK dockerfile and corresponding binary images are restricted
# for use solely with Java applications or Java application components
# that are being developed for deployment on Microsoft Azure or Azure Stack,
# and are not intended to be used for any other purpose.
FROM centos:latest
RUN rpm --import http://repos.azul.com/azul-repo.key && \
curl http://repos.azul.com/azure-only/zulu-azure.repo -o /etc/yum.repos.d/zulu-azure.repo && \
yum -q -y update && \
yum -q -y install zulu-8-azure-jdk-8.31.0.2

Просмотреть файл

@ -1 +1,16 @@
# This Zulu OpenJDK dockerfile and corresponding binary images are restricted
# for use solely with Java applications or Java application components
# that are being developed for deployment on Microsoft Azure or Azure Stack,
# and are not intended to be used for any other purpose.
FROM debian:jessie
RUN apt-get -q update
RUN apt-get -y install gnupg software-properties-common
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x219BD9C9 && \
apt-add-repository "deb http://repos.azul.com/azure-only/zulu/apt stable main" && \
apt-get -q update && \
apt-get -y install zulu-8-azure-jdk=8.31.0.2 && \
rm -rf /var/lib/apt/lists/*

Просмотреть файл

@ -1 +1,16 @@
# This Zulu OpenJDK dockerfile and corresponding binary images are restricted
# for use solely with Java applications or Java application components
# that are being developed for deployment on Microsoft Azure or Azure Stack,
# and are not intended to be used for any other purpose.
FROM debian:stretch
RUN apt-get -q update
RUN apt-get -y install gnupg software-properties-common
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x219BD9C9 && \
apt-add-repository "deb http://repos.azul.com/azure-only/zulu/apt stable main" && \
apt-get -q update && \
apt-get -y install zulu-8-azure-jdk=8.31.0.2 && \
rm -rf /var/lib/apt/lists/*

Просмотреть файл

@ -1 +1,16 @@
# This Zulu OpenJDK dockerfile and corresponding binary images are restricted
# for use solely with Java applications or Java application components
# that are being developed for deployment on Microsoft Azure or Azure Stack,
# and are not intended to be used for any other purpose.
FROM ubuntu:bionic
RUN apt-get -q update
RUN apt-get -y install gnupg software-properties-common
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x219BD9C9 && \
apt-add-repository "deb http://repos.azul.com/azure-only/zulu/apt stable main" && \
apt-get -q update && \
apt-get -y install zulu-8-azure-jdk=8.31.0.2 && \
rm -rf /var/lib/apt/lists/*