FROM openshift/golang-builder:rhel_8_golang_1.16 AS builder
ENV __doozer=update BUILD_RELEASE=202110121407.p0.git.2ae5850.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-202110121407.p0.git.2ae5850.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge KUBE_GIT_COMMIT=2ae5850bc561a05c7b380b570550e1f8e6cff82b KUBE_GIT_MAJOR=1 KUBE_GIT_MINOR=11+ KUBE_GIT_TREE_STATE=clean KUBE_GIT_VERSION=v1.11.7-beta.0.0.20181219023948-b875d52ea96d+2ae5850 OS_GIT_COMMIT=2ae5850 OS_GIT_VERSION=4.8.0-202110121407.p0.git.2ae5850.assembly.stream-2ae5850 SOURCE_DATE_EPOCH=1626954258 SOURCE_GIT_COMMIT=2ae5850bc561a05c7b380b570550e1f8e6cff82b SOURCE_GIT_TAG=2ae5850 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.8.0.20211012.143747
ENV __doozer=update BUILD_RELEASE=202110121407.p0.git.2ae5850.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-202110121407.p0.git.2ae5850.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge KUBE_GIT_COMMIT=2ae5850bc561a05c7b380b570550e1f8e6cff82b KUBE_GIT_MAJOR=1 KUBE_GIT_MINOR=11+ KUBE_GIT_TREE_STATE=clean KUBE_GIT_VERSION=v1.11.7-beta.0.0.20181219023948-b875d52ea96d+2ae5850 OS_GIT_COMMIT=2ae5850 OS_GIT_VERSION=4.8.0-202110121407.p0.git.2ae5850.assembly.stream-2ae5850 SOURCE_DATE_EPOCH=1626954258 SOURCE_GIT_COMMIT=2ae5850bc561a05c7b380b570550e1f8e6cff82b SOURCE_GIT_TAG=2ae5850 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="202110121407.p0.git.2ae5850.assembly.stream" \
        io.openshift.build.commit.id="2ae5850bc561a05c7b380b570550e1f8e6cff82b" \
        io.openshift.build.source-location="https://github.com/openshift/linuxptp-daemon" \
        io.openshift.build.commit.url="https://github.com/openshift/linuxptp-daemon/commit/2ae5850bc561a05c7b380b570550e1f8e6cff82b" \
        version="v4.8.0"

