From 1e2360bffce649eab4ede8bc34bb62f5ab33995c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 02:17:29 +0000 Subject: [PATCH 1/2] Bump io.netty:netty-bom from 4.2.12.Final to 4.2.13.Final Bumps [io.netty:netty-bom](https://github.com/netty/netty) from 4.2.12.Final to 4.2.13.Final. - [Release notes](https://github.com/netty/netty/releases) - [Commits](https://github.com/netty/netty/compare/netty-4.2.12.Final...netty-4.2.13.Final) --- updated-dependencies: - dependency-name: io.netty:netty-bom dependency-version: 4.2.13.Final dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 00201a7..842dd37 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,7 +49,7 @@ dependencies { implementation("io.grpc:grpc-protobuf:1.81.0") implementation("io.grpc:grpc-netty:1.81.0") - implementation(platform("io.netty:netty-bom:4.2.12.Final")) + implementation(platform("io.netty:netty-bom:4.2.13.Final")) implementation("com.google.protobuf:protobuf-java:4.34.1") implementation("com.google.protobuf:protobuf-java-util:4.34.1") From f13c62fd766a9b1b24b633365dbab37ddac7f693 Mon Sep 17 00:00:00 2001 From: mcz Date: Fri, 15 May 2026 17:40:33 +0200 Subject: [PATCH 2/2] Use alpine image of eclipse-temurin --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f52b85..f54950b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,11 @@ -FROM eclipse-temurin:25-jre +FROM eclipse-temurin:25-jre-alpine WORKDIR /app COPY build/libs/core-*.jar core.jar COPY docker-entrypoint.sh /app/docker-entrypoint.sh -RUN apt-get update && apt-get install -y --no-install-recommends curl && \ - rm -rf /var/lib/apt/lists/* && \ +RUN apk add --no-cache curl && \ chmod +x /app/docker-entrypoint.sh && \ chown -R 1000:1000 /app