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

update ubi image and go-discover #4287

Merged
merged 2 commits into from
Aug 30, 2024
Merged
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
7 changes: 7 additions & 0 deletions .changelog/4287.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:enhancement
docker: update go-discover binary
```

```release-note:enhancement
docker: update ubi base image to `ubi9-minimal:9.4`.
```
4 changes: 2 additions & 2 deletions control-plane/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# either).
ARG GOLANG_VERSION
FROM golang:${GOLANG_VERSION}-alpine3.19 as go-discover
RUN CGO_ENABLED=0 go install github.com/hashicorp/go-discover/cmd/discover@214571b6a5309addf3db7775f4ee8cf4d264fd5f
RUN CGO_ENABLED=0 go install github.com/hashicorp/go-discover/cmd/discover@275a71457aa412bf20df9f9b77c380667164a5e6

# dev copies the binary from a local build
# -----------------------------------
Expand Down Expand Up @@ -136,7 +136,7 @@ FROM release-default AS release-default-fips
# We don't rebuild the software because we want the exact checksums and
# binary signatures to match the software and our builds aren't fully
# reproducible currently.
FROM registry.access.redhat.com/ubi9-minimal:9.3 as ubi
FROM registry.access.redhat.com/ubi9-minimal:9.4 as ubi

ARG PRODUCT_NAME
ARG PRODUCT_VERSION
Expand Down
Loading