FROM openshift/golang-builder:1.12 AS builder
ENV __doozer=update BUILD_RELEASE=202005050921 BUILD_VERSION=v4.2.32 OS_GIT_MAJOR=4 OS_GIT_MINOR=2 OS_GIT_PATCH=32 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.2.32-202005050921 
ENV __doozer=merge OS_GIT_COMMIT=2f08889 OS_GIT_VERSION=4.2.32-202005050921-2f08889 SOURCE_DATE_EPOCH=1588453430 SOURCE_GIT_COMMIT=2f08889ca73fd78cc8432ec8a03762a92b8ef011 SOURCE_GIT_TAG=2f08889ca SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator 
WORKDIR /go/src/github.com/openshift/cluster-image-registry-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.2.32.20200505.092140
ENV __doozer=update BUILD_RELEASE=202005050921 BUILD_VERSION=v4.2.32 OS_GIT_MAJOR=4 OS_GIT_MINOR=2 OS_GIT_PATCH=32 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.2.32-202005050921 
ENV __doozer=merge OS_GIT_COMMIT=2f08889 OS_GIT_VERSION=4.2.32-202005050921-2f08889 SOURCE_DATE_EPOCH=1588453430 SOURCE_GIT_COMMIT=2f08889ca73fd78cc8432ec8a03762a92b8ef011 SOURCE_GIT_TAG=2f08889ca SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator 
COPY images/bin/entrypoint.sh /usr/bin/
COPY manifests/image-references manifests/0* /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" \
        io.openshift.maintainer.component="Image Registry" \
        version="v4.2.32" \
        release="202005050921" \
        io.openshift.build.commit.id="2f08889ca73fd78cc8432ec8a03762a92b8ef011" \
        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/2f08889ca73fd78cc8432ec8a03762a92b8ef011"

