diff --git a/Dockerfile b/Dockerfile index 1d31cd689..ef077c4c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ COPY config/crd/bases config/crd/bases RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH GO111MODULE=on go build -ldflags "$LDFLAGS" -mod vendor -a -o manager main.go # Create final image from minimal + built binary -FROM --platform=linux/$TARGETARCH registry.access.redhat.com/ubi9/ubi-minimal:9.8-1781496742 +FROM --platform=linux/$TARGETARCH registry.access.redhat.com/ubi9/ubi-minimal:9.8-1782366411 WORKDIR / COPY --from=builder /opt/app-root/manager . USER 65532:65532 diff --git a/Dockerfile.downstream b/Dockerfile.downstream index 91dc5cb5b..3705a012a 100644 --- a/Dockerfile.downstream +++ b/Dockerfile.downstream @@ -21,7 +21,7 @@ ENV GOEXPERIMENT strictfipsruntime RUN GOOS=linux GO111MODULE=on go build -tags strictfipsruntime -ldflags "-X 'main.buildVersion=${BUILDVERSION}' -X 'main.buildDate=`date +%Y-%m-%d\ %H:%M`'" -mod vendor -a -o manager main.go # Create final image from minimal + built binary -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1781496742 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1782366411 ARG BUILDVERSION ARG BUILDVERSION_Y diff --git a/integration-tests/backend/Dockerfile b/integration-tests/backend/Dockerfile index 77a9bead9..246d8c405 100644 --- a/integration-tests/backend/Dockerfile +++ b/integration-tests/backend/Dockerfile @@ -17,7 +17,7 @@ COPY testdata/ testdata/ RUN GOGC=50 GOMAXPROCS=4 GOOS=linux GOARCH=$TARGETARCH \ ginkgo build --ldflags="-s -w" -o e2e-tests.test -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1781496742 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1782366411 WORKDIR /tests