diff --git a/modules/olm-restricted-networks-configuring-operatorhub.adoc b/modules/olm-restricted-networks-configuring-operatorhub.adoc index f3736c08c4d5..8858aace6aa2 100644 --- a/modules/olm-restricted-networks-configuring-operatorhub.adoc +++ b/modules/olm-restricted-networks-configuring-operatorhub.adoc @@ -199,16 +199,16 @@ For example, in the following `deployments` spec of an etcd Operator CSV: + [source,go] ---- -FROM registry.redhat.io/openshift4/ose-operator-registry:v4.2 AS builder +FROM registry.redhat.io/openshift4/ose-operator-registry:v4.2.8 AS builder COPY manifests manifests RUN /bin/initializer -o ./bundles.db -FROM scratch +FROM openshift/origin-base -COPY --from=builder /build/bundles.db /bundles.db -COPY --from=builder /build/bin/registry-server /registry-server +COPY --from=builder /registry/bundles.db /bundles.db +COPY --from=builder /usr/bin/registry-server /registry-server COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe EXPOSE 50051