Skip to content

Update registry.access.redhat.com/ubi8/ubi-minimal Docker tag to v8.7-923 #26

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion api/src/main/docker/Dockerfile.jvm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Keep updated
# https://github.com/quarkusio/quarkus-quickstarts/blob/master/getting-started/src/main/docker/Dockerfile.jvm
###
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-923

ARG JAVA_PACKAGE=java-11-openjdk-headless
ARG RUN_JAVA_VERSION=1.3.8
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/docker/Dockerfile.multistage
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN mvn -f /usr/src/app/pom.xml -B de.qaware.maven:go-offline-maven-plugin:1.2.8
RUN mvn -f /usr/src/app/pom.xml clean package -Pnative

## Stage 2 : create the docker final image
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-923
WORKDIR /work/

COPY --from=build /usr/src/app/api/target/*-runner /work/
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/docker/Dockerfile.native
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Keep updated
# https://github.com/quarkusio/quarkus-quickstarts/blob/master/getting-started/src/main/docker/Dockerfile.native
###
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-923
WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
Expand Down