diff --git a/scheduler/boot-shedlock-sample/Dockerfile b/scheduler/boot-shedlock-sample/Dockerfile index 101bc464d..7acad2659 100644 --- a/scheduler/boot-shedlock-sample/Dockerfile +++ b/scheduler/boot-shedlock-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.9_9-jre-focal as builder +FROM eclipse-temurin:17.0.10_7-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-shedlock-sample-0.0.1-SNAPSHOT.jar COPY ${JAR_FILE} application.jar RUN java -Djarmode=layertools -jar application.jar extract # the second stage of our build will copy the extracted layers -FROM eclipse-temurin:17.0.9_9-jre-focal +FROM eclipse-temurin:17.0.10_7-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./