8000 add Dockerfiles for Ubuntu 20.04 release by ironstas1k · Pull Request #11 · microsoft/java · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-11u7-jdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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.39+15 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zulu-11-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-11u7-jre
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-jre=11.39+15 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-11-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-11u7-jre-headless
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-jre-headless=11.39+15 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-hl-11-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-13u3-jdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-13-azure-jdk=13.31+11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zulu-13-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-13u3-jre
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-13-azure-jre=13.31+11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-13-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-13u3-jre-headless
8000
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-13-azure-jre-headless=13.31+11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-hl-13-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-14u1-jdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

RUN apt-get -qq update && \
apt-get -qq -y --no-install-recommends install gnupg software-properties-common && \
527E 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-14-azure-jdk=14.28+21 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zulu-14-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-14u1-jre
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-14-azure-jre=14.28+21 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-14-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-7u262-jdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-7-azure-jdk=7.38.0.11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zulu-7-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-7u262-jre
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-7-azure-jre=7.38.0.11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-7-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-7u262-jre-headless
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-7-azure-jre-headless=7.38.0.11 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-hl-7-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-8u252-jdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-8-azure-jdk=8.46.0.19 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zulu-8-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-8u252-jre
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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-8-azure-jre=8.46.0.19 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-8-azure-amd64
19 changes: 19 additions & 0 deletions docker/ubuntu-20.04/Dockerfile.zulu-8u252-jre-headless
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# 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:focal
MAINTAINER Zulu Enterprise Container Images <azul-zulu-images@microsoft.com>

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 zul 40B5 u-8-azure-jre-headless=8.46.0.19 && \
rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME=/usr/lib/jvm/zre-hl-8-azure-amd64
0