FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202201082234.p0.g6602684.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-202201082234.p0.g6602684.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=6602684 OS_GIT_VERSION=4.7.0-202201082234.p0.g6602684.assembly.stream-6602684 SOURCE_DATE_EPOCH=1629410663 SOURCE_GIT_COMMIT=6602684d19e842181f39e926052999633d06e35c SOURCE_GIT_TAG=6602684d 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.20220108.230413
ENV __doozer=update BUILD_RELEASE=202201082234.p0.g6602684.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-202201082234.p0.g6602684.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=6602684 OS_GIT_VERSION=4.7.0-202201082234.p0.g6602684.assembly.stream-6602684 SOURCE_DATE_EPOCH=1629410663 SOURCE_GIT_COMMIT=6602684d19e842181f39e926052999633d06e35c SOURCE_GIT_TAG=6602684d 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="202201082234.p0.g6602684.assembly.stream" \
        io.openshift.build.commit.id="6602684d19e842181f39e926052999633d06e35c" \
        io.openshift.build.source-location="https://github.com/openshift/linuxptp-daemon" \
        io.openshift.build.commit.url="https://github.com/openshift/linuxptp-daemon/commit/6602684d19e842181f39e926052999633d06e35c" \
        version="v4.7.0"

