Skip to content

Commit

Permalink
Update eclipse-temurin Docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 31, 2023
1 parent 79f9c8f commit aa9f07e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variables:
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.


image: eclipse-temurin:17.0.6_10-jdk-focal
image: eclipse-temurin:17.0.9_9-jdk-focal

cache:
key: gradle-cache-key
Expand Down
4 changes: 2 additions & 2 deletions application/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# the first stage of our build will extract the layers
FROM eclipse-temurin:17.0.6_10-jre-focal as builder
FROM eclipse-temurin:17.0.9_9-jre-focal as builder
WORKDIR application
ARG JAR_FILE=build/libs/devzone-0.0.1.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.6_10-jre-focal
FROM eclipse-temurin:17.0.9_9-jre-focal
WORKDIR application
COPY --from=builder application/dependencies/ ./
COPY --from=builder application/spring-boot-loader/ ./
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
steps:
- name: 'eclipse-temurin:17.0.6_10-jdk-focal'
- name: 'eclipse-temurin:17.0.9_9-jdk-focal'
args:
- '-c'
- |
Expand Down

0 comments on commit aa9f07e

Please sign in to comment.