FROM openshift/golang-builder:1.12 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=12 OS_GIT_VERSION=4.3.12-202004091734-afad871 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=afad871bae080e11656f3d0464859f632536106e SOURCE_GIT_TAG=4.0.0-397-gafad871ba SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator SOURCE_DATE_EPOCH=1585013322 OS_GIT_COMMIT=afad871 BUILD_VERSION=v4.3.12 BUILD_RELEASE=202004091734
WORKDIR /go/src/github.com/openshift/cluster-image-registry-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.3.12.20200409.173425
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=12 OS_GIT_VERSION=4.3.12-202004091734-afad871 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=afad871bae080e11656f3d0464859f632536106e SOURCE_GIT_TAG=4.0.0-397-gafad871ba SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator SOURCE_DATE_EPOCH=1585013322 OS_GIT_COMMIT=afad871 BUILD_VERSION=v4.3.12 BUILD_RELEASE=202004091734
COPY images/bin/entrypoint.sh /usr/bin/
COPY manifests/image-references manifests/0* /manifests/
COPY vendor/github.com/openshift/api/imageregistry/v1/00-crd.yaml /manifests/
COPY --from=builder /go/src/github.com/openshift/cluster-image-registry-operator/tmp/_output/bin/cluster-image-registry-operator /usr/bin/
RUN ln /usr/bin/cluster-image-registry-operator /usr/bin/cluster-image-registry-operator-watch && \
    chmod -R g+w /etc/pki/ca-trust/extracted/pem/

ENTRYPOINT ["/usr/bin/entrypoint.sh"]

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-cluster-image-registry-operator" \
        com.redhat.component="ose-cluster-image-registry-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        version="v4.3.12" \
        release="202004091734" \
        io.openshift.build.commit.id="afad871bae080e11656f3d0464859f632536106e" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-image-registry-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-image-registry-operator/commit/afad871bae080e11656f3d0464859f632536106e"

