Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump JDK to 17 #42

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# === Build maven cache ===

FROM maven:3.8.3-jdk-11 AS cache
FROM maven:3.8.5-openjdk-17 AS cache

# Ensure exercise dependencies are downloaded
WORKDIR /opt/exercise
Expand All @@ -10,7 +10,7 @@ RUN mvn test dependency:go-offline -DexcludeReactor=false

# === Build runtime image ===

FROM maven:3.8.3-jdk-11-slim
FROM maven:3.8.5-openjdk-17-slim
WORKDIR /opt/test-runner

RUN apt-get update && \
Expand Down