From e0bffef30b592ee74a83a530ef2705804a33aa6a Mon Sep 17 00:00:00 2001 From: Marcel Erpenbeck Date: Mon, 15 Jan 2024 13:28:26 +0100 Subject: [PATCH] fix: updates Dockerfile ENTRYPOINT due to changed jarloader class path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d81934cf..3e9291a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ COPY --from=build /home/gradle/src/application/ ./ USER 65532 ARG VERSION=0.0.0 ENV APP_VERSION=${VERSION} -ENTRYPOINT ["java", "-XX:MaxRAMPercentage=75", "org.springframework.boot.loader.JarLauncher"] +ENTRYPOINT ["java", "-XX:MaxRAMPercentage=75", "org.springframework.boot.loader.launch.JarLauncher"]