Skip to content
Merged
Changes from all commits
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 docker/Dockerfile.redhat-app.multistage
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Stage 1 : build with maven builder image
FROM registry.access.redhat.com/ubi8/openjdk-21:1.18 AS build
FROM registry.access.redhat.com/ubi8/openjdk-21:1.23-4.1778751353 AS build
ARG MAVEN_BUILD_EXTRA_ARGS=
RUN echo "$MAVEN_BUILD_EXTRA_ARGS"

Expand All @@ -14,7 +14,7 @@ USER 185
RUN cd /usr/src/app/ && ./mvnw clean install -DskipTests $MAVEN_BUILD_EXTRA_ARGS

## Stage 2 : create the docker final image
FROM registry.access.redhat.com/ubi8/openjdk-21:1.18
FROM registry.access.redhat.com/ubi8/openjdk-21:1.23-4.1778751353

ARG MAVEN_EXTRA_ARGS=
RUN echo "$MAVEN_EXTRA_ARGS"
Expand Down
Loading