OpenJDK 9 with dependencies
10K+
FROM openjdk:9-jdk-slim
ENV DEBIAN_FRONTEND noninteractive
# extra stuff in order to update the public signing key
RUN apt-get update --allow-insecure-repositories && apt-get install -y --allow-unauthenticated libcrypt1
RUN apt-get install -y --allow-unauthenticated wget gnupg
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138 && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9
# install jq, j2cli & dependencies
RUN apt update && \
apt install -y python3-pip jq && \
pip3 install j2cli
Content type
Image
Digest
Size
336.3 MB
Last updated
over 4 years ago
docker pull elementalconcept/ec-openjdk-9-slim