Skip to content
Snippets Groups Projects
Commit 05248d2b authored by Will Billingsley's avatar Will Billingsley
Browse files

Update Dockerfile and add toolchain download

This commit updates the Dockerfile to use JDK21 and adds configuration
to auto-download a JDK.

The Dockerfile needs to be updated to JDK21 because the autodownload
cannot find a JDK21 for Ubuntu on M1 Macs (so needs to use one set
up in the Docker image) for tutorial 3
parent d797671f
No related branches found
No related tags found
No related merge requests found
FROM openjdk:17-jdk-slim-bullseye
FROM openjdk:21-jdk-slim-bullseye
# Install some basic development utilities
RUN apt-get update && apt-get install -y \
......
......@@ -4,5 +4,9 @@ pluginManagement {
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = 'dotsAndBoxes'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment