FROM openshift/golang-builder:1.12 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=9 OS_GIT_VERSION=4.3.9-202003230345-bfdc2fe OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=bfdc2fed5d0f138987c1da031293b0f2e1d39ca0 SOURCE_GIT_TAG=bfdc2fed SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator SOURCE_DATE_EPOCH=1584693123 OS_GIT_COMMIT=bfdc2fe BUILD_VERSION=v4.3.9 BUILD_RELEASE=202003230345
WORKDIR /go/src/github.com/openshift/cluster-image-registry-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.3.9.20200323.034557
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=9 OS_GIT_VERSION=4.3.9-202003230345-bfdc2fe OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=bfdc2fed5d0f138987c1da031293b0f2e1d39ca0 SOURCE_GIT_TAG=bfdc2fed SOURCE_GIT_URL=https://github.com/openshift/cluster-image-registry-operator SOURCE_DATE_EPOCH=1584693123 OS_GIT_COMMIT=bfdc2fe BUILD_VERSION=v4.3.9 BUILD_RELEASE=202003230345
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" \
        version="v4.3.9" \
        release="202003230345" \
        io.openshift.build.commit.id="bfdc2fed5d0f138987c1da031293b0f2e1d39ca0" \
        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/bfdc2fed5d0f138987c1da031293b0f2e1d39ca0"

