From 2371c13cb2fd9deffe783e89d2c4fde841d15824 Mon Sep 17 00:00:00 2001 From: Richard Drake Date: Wed, 25 Mar 2026 16:20:40 -0400 Subject: [PATCH 1/2] Bump runtime from amazoncorretto:11 to 17 The build uses gradle:latest (JDK 21+), producing bytecode that won't run on JDK 11. Match the other branches by using Corretto 17. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4d0c53..e54b86f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ WORKDIR /home/gradle/src RUN gradle ij-server:buildFatJar --no-daemon # Stage 3: Create the Runtime Image -FROM amazoncorretto:11 AS runtime +FROM amazoncorretto:17 AS runtime EXPOSE 8080 RUN mkdir /app RUN mkdir -p /data/tt-files && chmod -R 777 /data/tt-files From bcd166c92377c2f1c178362ef59d6040b7eb4aea Mon Sep 17 00:00:00 2001 From: Richard Drake Date: Wed, 25 Mar 2026 16:21:59 -0400 Subject: [PATCH 2/2] Change Gradle build workflow to manual trigger only --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34e5b1c..fe86d7c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,6 @@ name: Gradle Build -on: [push, pull_request] +on: [workflow_dispatch] jobs: build: