FROM openshift/golang-builder:1.12 AS builder
ENV SOURCE_GIT_COMMIT=769ba5c3cf596ccb0b17e0e47b0d413850798b5c SOURCE_DATE_EPOCH=1573133823 BUILD_VERSION=v4.3.0 SOURCE_GIT_URL=https://github.com/openshift/cluster-node-tuning-operator SOURCE_GIT_TAG=769ba5c BUILD_RELEASE=202001211731
WORKDIR /go/src/github.com/openshift/cluster-node-tuning-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.3.0.20200121.173126
ENV SOURCE_GIT_COMMIT=769ba5c3cf596ccb0b17e0e47b0d413850798b5c SOURCE_DATE_EPOCH=1573133823 BUILD_VERSION=v4.3.0 SOURCE_GIT_URL=https://github.com/openshift/cluster-node-tuning-operator SOURCE_GIT_TAG=769ba5c BUILD_RELEASE=202001211731
COPY --from=builder /go/src/github.com/openshift/cluster-node-tuning-operator/cluster-node-tuning-operator /usr/bin/
COPY manifests /manifests
RUN useradd cluster-node-tuning-operator
USER cluster-node-tuning-operator
ENTRYPOINT ["/usr/bin/cluster-node-tuning-operator"]

LABEL \
        io.k8s.description="This is a component of OpenShift and manages the lifecycle of node-level tuning." \
        com.redhat.component="cluster-node-tuning-operator-container" \
        name="openshift/ose-cluster-node-tuning-operator" \
        io.k8s.display-name="OpenShift cluster-node-tuning-operator" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-node-tuning-operator" \
        io.openshift.release.operator="true" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-node-tuning-operator/commit/769ba5c3cf596ccb0b17e0e47b0d413850798b5c" \
        version="v4.3.0" \
        io.openshift.build.commit.id="769ba5c3cf596ccb0b17e0e47b0d413850798b5c" \
        release="202001211731"

