FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202107070458.p0.git.8d3fc7f.assembly.stream BUILD_VERSION=v4.7.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=7 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.7.0-202107070458.p0.git.8d3fc7f.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge KUBE_GIT_COMMIT=8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d KUBE_GIT_MAJOR=1 KUBE_GIT_MINOR=11+ KUBE_GIT_TREE_STATE=clean KUBE_GIT_VERSION=v1.11.7-beta.0.0.20181219023948-b875d52ea96d+8d3fc7f OS_GIT_COMMIT=8d3fc7f OS_GIT_VERSION=4.7.0-202107070458.p0.git.8d3fc7f.assembly.stream-8d3fc7f SOURCE_DATE_EPOCH=1610900483 SOURCE_GIT_COMMIT=8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d SOURCE_GIT_TAG=8d3fc7f SOURCE_GIT_URL=https://github.com/openshift/linuxptp-daemon 
WORKDIR /go/src/github.com/openshift/linuxptp-daemon
COPY . .
RUN make clean && make

FROM openshift/ose-base:v4.7.0.20210707.052006
ENV __doozer=update BUILD_RELEASE=202107070458.p0.git.8d3fc7f.assembly.stream BUILD_VERSION=v4.7.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=7 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.7.0-202107070458.p0.git.8d3fc7f.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge KUBE_GIT_COMMIT=8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d KUBE_GIT_MAJOR=1 KUBE_GIT_MINOR=11+ KUBE_GIT_TREE_STATE=clean KUBE_GIT_VERSION=v1.11.7-beta.0.0.20181219023948-b875d52ea96d+8d3fc7f OS_GIT_COMMIT=8d3fc7f OS_GIT_VERSION=4.7.0-202107070458.p0.git.8d3fc7f.assembly.stream-8d3fc7f SOURCE_DATE_EPOCH=1610900483 SOURCE_GIT_COMMIT=8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d SOURCE_GIT_TAG=8d3fc7f SOURCE_GIT_URL=https://github.com/openshift/linuxptp-daemon 
RUN yum -y update && yum --setopt=skip_missing_names_on_install=False -y install linuxptp ethtool hwdata && yum clean all
COPY --from=builder /go/src/github.com/openshift/linuxptp-daemon/bin/ptp /usr/local/bin/

CMD ["/usr/local/bin/ptp"]

LABEL \
        name="openshift/ose-ptp" \
        com.redhat.component="ose-linuxptp-daemon-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Networking" \
        io.openshift.maintainer.subcomponent="ptp" \
        release="202107070458.p0.git.8d3fc7f.assembly.stream" \
        io.openshift.build.commit.id="8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d" \
        io.openshift.build.source-location="https://github.com/openshift/linuxptp-daemon" \
        io.openshift.build.commit.url="https://github.com/openshift/linuxptp-daemon/commit/8d3fc7fc7cd7f1c2076ccd6fc628875126c9175d" \
        version="v4.7.0"

