Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ RUN USER=netobserv VERSION=main make oc-commands
RUN mkdir -p output

# Create final image from ubi + built binary and command
FROM --platform=linux/$TARGETARCH registry.access.redhat.com/ubi9/ubi:9.7-1769417801
FROM --platform=linux/$TARGETARCH registry.access.redhat.com/ubi9/ubi-minimal:9.7-1769056855

RUN microdnf install -y tar && \
microdnf clean all

WORKDIR /

COPY --from=builder /opt/app-root/build .
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.downstream
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1769056855
ARG BUILDVERSION
ARG BUILDVERSION_Y

RUN microdnf install -y tar && \
microdnf clean all

WORKDIR /

COPY --from=builder /opt/app-root/build .
Expand Down