From b7e72e561ecdc78d7a8a8236daed5433fbe86ad8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 01:54:48 +0000 Subject: [PATCH] chore(deps): update eclipse-temurin docker tag to v25 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 724ad9c..15eee42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM eclipse-temurin:22-jdk-noble AS build +FROM eclipse-temurin:25-jdk-noble AS build ENV JAVA_TOOL_OPTIONS="--enable-preview" WORKDIR /app COPY . . RUN --mount=type=cache,target=/root/.gradle ./gradlew bootJar --no-daemon -FROM eclipse-temurin:22-jre-noble AS runtime +FROM eclipse-temurin:25-jre-noble AS runtime WORKDIR /app VOLUME /app/config COPY --from=build /app/build/libs/AsyncLevelling-*.jar app.jar