Skip to content

Commit

Permalink
chore(deps): update eclipse-temurin docker tag to v17.0.10_7-jre-focal
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 24, 2024
1 parent 96cd7a6 commit 21efb2f
Show file tree
Hide file tree
Showing 24 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions batch-boot-jpa-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/batch-boot-jpa-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions boot-api-archunit-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-api-archunit-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions boot-choas-monkey/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-choas-monkey-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions boot-mongodb-elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-mongodb-elasticsearch-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions boot-rest-docs-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-rest-docs-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions graphql/boot-graphql-querydsl/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-graphql-querydsl-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions graphql/boot-graphql-webflux/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-graphql-webflux-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/ ./
Expand Down
2 changes: 1 addition & 1 deletion graphql/boot-graphql-webmvc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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-graphql-webmvc-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} application.jar
Expand Down
4 changes: 2 additions & 2 deletions httpClients/boot-http-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-http-proxy-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions httpClients/boot-rest-template/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/rest-template-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions httpClients/boot-web-client-mvc/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-web-client-mvc-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions httpClients/boot-web-client-webflux/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/web-client-webflux-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/boot-data-customsequence/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-data-customsequence-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/boot-data-envers/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-data-envers-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 as builder
FROM eclipse-temurin:17.0.10_7-jre-focal as builder
WORKDIR application
COPY --from=builder application/dependencies/ ./
COPY --from=builder application/spring-boot-loader/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/boot-data-keyset-pagination/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-data-keyset-pagination-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/boot-jpa-locks/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-jpa-locks-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/multitenancy/multidatasource-multitenancy/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/multidatasource-multitenancy-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/multitenancy/multitenancy-db/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/multitenancy-db-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/multitenancy/partition/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/partition-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions jpa/multitenancy/schema/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/schema-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/boot-jooq-r2dbc-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-jooq-r2dbc-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/boot-r2dbc-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-r2dbc-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions scheduler/boot-jobrunr-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-jobrunr-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/ ./
Expand Down
4 changes: 2 additions & 2 deletions scheduler/boot-scheduler-quartz/Dockerfile
Original file line number Diff line number Diff line change
@@ -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-scheduler-quartz-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/ ./
Expand Down

0 comments on commit 21efb2f

Please sign in to comment.