This commit is contained in:
Tom Karbowski 2018-09-14 13:08:45 -05:00 коммит произвёл GitHub
Родитель aac1a3719f
Коммит 285eb78ce3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 34 добавлений и 0 удалений

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

@ -0,0 +1,17 @@
# This Zulu OpenJDK Dockerfile and corresponding Docker image are
# to be used 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
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>
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-7-azure-jdk=7.24.0.2 && \
rm -rf /var/lib/apt/lists/*

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

@ -0,0 +1,17 @@
# This Zulu OpenJDK Dockerfile and corresponding Docker image are
# to be used 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
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>
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/*