Skip to content
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
2 changes: 1 addition & 1 deletion Containerfile.bpfman-agent
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build the manager binary
ARG BUILDPLATFORM

FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782852234 AS bpfman-agent-build
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782980183 AS bpfman-agent-build

# The following ARGs are set internally by docker/build-push-action in github actions
ARG TARGETOS
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.bpfman-agent.openshift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BUILDVERSION
# Build the manager binary
ARG BUILDPLATFORM

FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782852234 AS bpfman-agent-build
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782980183 AS bpfman-agent-build
ARG BUILDVERSION

# The following ARGs are set internally by docker/build-push-action in github actions
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.bpfman-operator
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build the manager binary
ARG BUILDPLATFORM

FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782852234 AS bpfman-operator-build
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782980183 AS bpfman-operator-build

ARG BUILDPLATFORM

Expand Down
4 changes: 2 additions & 2 deletions Containerfile.bpfman-operator.openshift
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ ARG BUILDPLATFORM

# Verify that all code, including integration tests, compiles successfully.
# This stage catches build failures early before the main build proceeds.
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782852234 AS verify-test
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782980183 AS verify-test
WORKDIR /usr/src/bpfman-operator
COPY . .
RUN go test -mod vendor -tags=integration_tests -c -o /dev/null ./test/integration/... && touch /tmp/verify-test.done

FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782852234 AS bpfman-operator-build
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:9.8-1782980183 AS bpfman-operator-build

ARG BUILDVERSION
ARG BUILDPLATFORM
Expand Down