Skip to content

Commit

Permalink
Switch to using Eclipse Temurin; AdoptOpenJDK is deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCarini committed Dec 28, 2022
1 parent bd922a8 commit c1d7398
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# AdoptOpenJDK image with Java 11 JDK installed on an Alpine Linux base image.
# eclipse-temurin image with Java 11 JDK installed on an Alpine Linux base image.
# We want an Alpine Linux base image to keep the overall image size small.
# We want a Java 11 JDK image as the verifier CLI needs a JDK (as opposed to a JRE).
#
# Ref: https://hub.docker.com/_/adoptopenjdk
# Ref: https://hub.docker.com/layers/adoptopenjdk/openjdk11/alpine-slim/images/sha256-ef65f9b755ba9d70580d3b5e4ea7f133c68cecc096171959d011b38c4728f6b2?context=explore
FROM adoptopenjdk/openjdk11:alpine-slim
# Ref: https://hub.docker.com/_/eclipse-temurin
# Ref: https://hub.docker.com/layers/library/eclipse-temurin/11-jdk-alpine/images/sha256-38cd0ba262dad90d8ba61e6dbc6328bf50043a62c5f9b4e6108d7f5f295c2ec5?context=explore
FROM eclipse-temurin:11-jdk-alpine

# We prefer bash for our script, so let's install that
RUN apk --no-cache add bash
Expand Down

0 comments on commit c1d7398

Please sign in to comment.