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
1 change: 1 addition & 0 deletions Dockerfile-args.downstream
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
BUILDVERSION=1.9.3
BUILDVERSION_Y=1.9
5 changes: 4 additions & 1 deletion Dockerfile.downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ARG BUILDVERSION
ARG BUILDVERSION_Y

FROM registry.access.redhat.com/ubi9/nodejs-22:9.6-1756959443 as web-builder

Expand Down Expand Up @@ -35,6 +36,7 @@ RUN go build -tags strictfipsruntime -ldflags "-X 'main.buildVersion=$BUILDVERSI

FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6-1755695350
ARG BUILDVERSION
ARG BUILDVERSION_Y

COPY --from=web-builder /opt/app-root/web/dist ./web/dist
COPY --from=go-builder /opt/app-root/plugin-backend ./
Expand All @@ -45,7 +47,8 @@ USER 65532:65532
ENTRYPOINT ["./plugin-backend"]

LABEL com.redhat.component="network-observability-console-plugin-container"
LABEL name="network-observability-console-plugin"
LABEL name="network-observability/network-observability-console-plugin-compat-rhel9"
LABEL cpe="cpe:/a:redhat:network_observ_optr:$BUILDVERSION_Y::el9"
LABEL io.k8s.display-name="Network Observability Console Plugin"
LABEL io.k8s.description="Network Observability Console Plugin"
LABEL summary="Network Observability Console Plugin"
Expand Down