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

Upgrade base image to to Ubi minimal 9.3 #1876

Merged
merged 1 commit into from
Nov 21, 2023
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 as build
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 as build
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RH doesn't do point releases such as 9.2 to 9.2.x instead they go to 9.3 it is expected that ubi9 is the main image and they are compatible with each other since the major version doesn't change.

We can just use :latest always whenever we release @pjuarezd minio/minio#18497


RUN microdnf update -y --nodocs && microdnf install ca-certificates -y --nodocs

Expand Down