diff --git a/openshift/registry.Dockerfile b/openshift/registry.Dockerfile deleted file mode 100644 index 82299f67b..000000000 --- a/openshift/registry.Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS builder - -ARG SOURCE_GIT_COMMIT -ENV GIT_COMMIT=${SOURCE_GIT_COMMIT} -WORKDIR /build -COPY . . -# TODO Modify upstream Makefile to separate the 'go build' commands -# from 'image-registry' target so we don't need these -RUN go build -o ./push ./testdata/push/push.go - -FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 -USER 1001 -COPY --from=builder /build/push /push -COPY testdata/images /images - -LABEL io.k8s.display-name="OpenShift Operator Lifecycle Manager Operator Controller E2E Registry" \ - io.k8s.description="This is a registry image that is used during E2E testing of Operator Controller"