Skip to content
Draft
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 Dockerfile.CNI.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY . /usr/src/dpu-cni
WORKDIR /usr/src/dpu-cni
RUN go build -o dpucni ./dpu-cni/dpu-cni.go

FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
COPY --from=builder /usr/src/dpu-cni/dpucni /usr/bin/
WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.IntelNetSecVSP.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN mkdir -p /bin && \

# Use distroless as minimal base image to package the Marvell VSP binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
ARG TARGETARCH
COPY --from=builder /workspace/bin/vsp-intel-netsec.${TARGETARCH} /vsp-intel-netsec

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.IntelP4.rhel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test

ARG P4_NAME=fxp-net_linux-networking
ENV P4_NAME $P4_NAME
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.IntelVSP.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY . .
# As a temporary workaround, we can try specifying GOMAXPROCS=2 to relieve this issue
RUN GOMAXPROCS=2 CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} make build-intel-vsp

FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
ARG TARGETARCH
ENV PYTHONUNBUFFERED=1
WORKDIR /
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.daemon.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN GOMAXPROCS=2 CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} make

# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
ARG TARGETARCH
WORKDIR /
COPY --from=builder /workspace/bin/daemon.${TARGETARCH} daemon
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.mrvlCPAgent.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN GOMAXPROCS=2 CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go b

# Use distroless as minimal base image to package the Marvell CP agent binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test-minimal-test
COPY --from=stage1 /cpagent-bin/ /usr/bin/

RUN yum update -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.mrvlVSP.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN mkdir -p /bin && \

# Use distroless as minimal base image to package the Marvell VSP binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
ARG TARGETARCH
COPY --from=builder /workspace/bin/vsp-mrvl.${TARGETARCH} /vsp-mrvl
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.networkResourcesInjector.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /workspace
COPY . .
RUN GOMAXPROCS=2 CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} make build-network-resources-injector

FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
ARG TARGETARCH
WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN GOMAXPROCS=2 CGO_ENABLED=1 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} make

# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9
FROM registry.ci.openshift.org/ocp/4.21:base-rhel9-minimal-test
WORKDIR /
ARG TARGETARCH
COPY --from=builder /workspace/bin/manager.${TARGETARCH} manager
Expand Down