Skip to content

Commit

Permalink
Merge pull request #156 from OlivierCazade/konflux-downstream-images
Browse files Browse the repository at this point in the history
Adding args to configure downstream images
  • Loading branch information
OlivierCazade authored Jan 22, 2025
2 parents 52d1805 + 237e976 commit bf44e00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile.downstream
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# We do not use --platform feature to auto fill this ARG because of incompatibility between podman and docker
ARG TARGETARCH=amd64
ARG COMMIT
ARG IMAGE=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9:1.8
ARG AGENT_IMAGE=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9:1.8

# Make kubectl & oc scripts available for copy
FROM registry.redhat.io/openshift4/ose-cli-rhel9:v4.17.0-202412032103.p0.g13001b0.assembly.stream.el9 as ose-cli
Expand Down Expand Up @@ -29,7 +31,7 @@ COPY .mk/ .mk/
RUN GOARCH=$TARGETARCH make compile

# Embedd commands in case users want to pull it from collector image
RUN USER=netobserv VERSION=main make oc-commands
RUN USER=netobserv VERSION=main IMAGE="$IMAGE" AGENT_IMAGE="$AGENT_IMAGE" make oc-commands

# Prepare output dir
RUN mkdir -p output
Expand Down

0 comments on commit bf44e00

Please sign in to comment.