Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update eclipse-temurin docker tag to v21.0.4_7-jre-alpine #1384

Merged
merged 4 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions r2dbc/boot-reactive-cache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM eclipse-temurin:17.0.11_9-jre-focal as builder
FROM eclipse-temurin:17.0.12_7-jre-focal as builder
WORKDIR application
rajadilipkolli marked this conversation as resolved.
Show resolved Hide resolved
ARG JAR_FILE=target/boot-reactive-cache-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.11_9-jre-focal
FROM eclipse-temurin:17.0.12_7-jre-focal
WORKDIR application
rajadilipkolli marked this conversation as resolved.
Show resolved Hide resolved
COPY --from=builder application/dependencies/ ./
COPY --from=builder application/spring-boot-loader/ ./
Expand Down