# THIS FILE IS GENERATED FROM Dockerfile DO NOT EDIT
FROM openshift/golang-builder:1.12 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=7 OS_GIT_VERSION=4.3.7-202003161611-ab4d62a OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=ab4d62a3bf3774b77b6f9b04a2028faec1568aca SOURCE_GIT_TAG=machine-config-daemon-4.3.7-202003160202 SOURCE_GIT_URL=https://github.com/openshift/machine-config-operator SOURCE_DATE_EPOCH=1583590488 OS_GIT_COMMIT=ab4d62a BUILD_VERSION=v4.3.7 BUILD_RELEASE=202003161611
WORKDIR /go/src/github.com/openshift/machine-config-operator
COPY . .
# FIXME once we can depend on a new enough host that supports globs for COPY,
# just use that.  For now we work around this by copying a tarball.
RUN make install DESTDIR=./instroot && tar -C instroot -cf instroot.tar .

FROM openshift/ose-base:v4.3.7.20200316.161155
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=7 OS_GIT_VERSION=4.3.7-202003161611-ab4d62a OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=ab4d62a3bf3774b77b6f9b04a2028faec1568aca SOURCE_GIT_TAG=machine-config-daemon-4.3.7-202003160202 SOURCE_GIT_URL=https://github.com/openshift/machine-config-operator SOURCE_DATE_EPOCH=1583590488 OS_GIT_COMMIT=ab4d62a BUILD_VERSION=v4.3.7 BUILD_RELEASE=202003161611
COPY --from=builder /go/src/github.com/openshift/machine-config-operator/instroot.tar /tmp/instroot.tar
RUN cd / && tar xf /tmp/instroot.tar && rm -f /tmp/instroot.tar
COPY install /manifests
RUN if ! rpm -q util-linux; then yum install -y util-linux && yum clean all && rm -rf /var/cache/yum/*; fi
COPY templates /etc/mcc/templates
ENTRYPOINT ["/usr/bin/machine-config-operator"]

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-machine-config-operator" \
        com.redhat.component="ose-machine-config-operator-container" \
        version="v4.3.7" \
        release="202003161611" \
        io.openshift.build.commit.id="ab4d62a3bf3774b77b6f9b04a2028faec1568aca" \
        io.openshift.build.source-location="https://github.com/openshift/machine-config-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/machine-config-operator/commit/ab4d62a3bf3774b77b6f9b04a2028faec1568aca"

