-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDockerfile.zulu-11u9-jdk
More file actions
21 lines (17 loc) · 991 Bytes
/
Dockerfile.zulu-11u9-jdk
File metadata and controls
21 lines (17 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 debian:buster
MAINTAINER Zulu Enterprise Container Images <[email protected]>
RUN apt-get -qq update && \
apt-get -qq -y --no-install-recommends install gnupg software-properties-common && \
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 -qq update && \
apt-get -qq -y dist-upgrade && \
apt-get -qq -y --no-install-recommends install zulu-11-azure-jdk=11.43+55* && \
apt-get -qq -y purge gnupg software-properties-common && \
apt -y autoremove --purge && \
rm -rf /var/lib/apt/lists/*
ENV JAVA_HOME=/usr/lib/jvm/zulu-11-azure-amd64