Commit 5b0fa83f authored by William Tucker's avatar William Tucker
Browse files

Revert "Add jdk11 image"

This reverts commit 9255bb8e.
parent e7864b7f
Loading
Loading
Loading
Loading

images/jdk11/Dockerfile

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
#####
## Image containing the full JDK
##
## Intended for use by builder images that need to unpack war files
## Runtime Java images should use the JRE only
#####

ARG ESGF_REPOSITORY_BASE=esgfdeploy
ARG ESGF_IMAGES_VERSION=latest
FROM ${ESGF_REPOSITORY_BASE}/base:${ESGF_IMAGES_VERSION}

USER root

RUN yum makecache && \
    yum install -y java-11-openjdk-devel-11.0.15.0.9 && \
    yum clean all
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
ARG ESGF_REPOSITORY_BASE=esgfdeploy
ARG ESGF_IMAGES_VERSION=latest

FROM ${ESGF_REPOSITORY_BASE}/jdk11:${ESGF_IMAGES_VERSION} as builder
FROM ${ESGF_REPOSITORY_BASE}/jre11:${ESGF_IMAGES_VERSION} as builder

# Unpack the THREDDS war
ARG THREDDS_VERSION=5.4