diff --git a/Containerfile.operator b/Containerfile.operator index b90fd4009b9c..3de0c9e60b99 100644 --- a/Containerfile.operator +++ b/Containerfile.operator @@ -5,18 +5,14 @@ WORKDIR /hypershift COPY --chown=default . . RUN make hypershift \ - && make hypershift-no-cgo \ && make hypershift-operator \ - && make product-cli \ && make karpenter-operator FROM registry.redhat.io/rhel9-4-els/rhel:9.4 COPY --from=builder /hypershift/bin/hypershift \ - /hypershift/bin/hypershift-no-cgo \ - /hypershift/bin/hcp \ - /hypershift/bin/hypershift-operator \ - /hypershift/bin/karpenter-operator \ - /usr/bin/ + /hypershift/bin/hypershift-operator \ + /hypershift/bin/karpenter-operator \ + /usr/bin/ ENTRYPOINT ["/usr/bin/hypershift"]