# THIS FILE IS GENERATED FROM Dockerfile DO NOT EDIT
FROM openshift/golang-builder:rhel_8_golang_1.16 AS builder
ENV __doozer=update BUILD_RELEASE=202111020903.p0.git.3b46a22.assembly.stream BUILD_VERSION=v4.8.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=8 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.8.0-202111020903.p0.git.3b46a22.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=3b46a22 OS_GIT_VERSION=4.8.0-202111020903.p0.git.3b46a22.assembly.stream-3b46a22 SOURCE_DATE_EPOCH=1635290906 SOURCE_GIT_COMMIT=3b46a2229b706cc9aa53e3ed86a407fbe3c5dff4 SOURCE_GIT_TAG=unreleased-master-926-g3b46a222 SOURCE_GIT_URL=https://github.com/openshift/machine-config-operator 
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.8.0.20211102.091449
ENV __doozer=update BUILD_RELEASE=202111020903.p0.git.3b46a22.assembly.stream BUILD_VERSION=v4.8.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=8 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.8.0-202111020903.p0.git.3b46a22.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=3b46a22 OS_GIT_VERSION=4.8.0-202111020903.p0.git.3b46a22.assembly.stream-3b46a22 SOURCE_DATE_EPOCH=1635290906 SOURCE_GIT_COMMIT=3b46a2229b706cc9aa53e3ed86a407fbe3c5dff4 SOURCE_GIT_TAG=unreleased-master-926-g3b46a222 SOURCE_GIT_URL=https://github.com/openshift/machine-config-operator 
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" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Machine Config Operator" \
        release="202111020903.p0.git.3b46a22.assembly.stream" \
        io.openshift.build.commit.id="3b46a2229b706cc9aa53e3ed86a407fbe3c5dff4" \
        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/3b46a2229b706cc9aa53e3ed86a407fbe3c5dff4" \
        version="v4.8.0"

